mirror of
https://github.com/AUTOMATIC1111/stable-diffusion-webui.git
synced 2025-08-10 10:50:09 +00:00
8 lines
184 B
Python
8 lines
184 B
Python
from operator import div as _div_
|
|
from inspect import getargspec
|
|
|
|
def raise_with_traceback(exc, tb):
|
|
raise exc, None, tb
|
|
|
|
__all__ = ['_div_', 'getargspec', 'raise_with_traceback']
|