Add files via upload

This commit is contained in:
ThereforeGames
2022-12-11 17:59:59 -05:00
committed by GitHub
parent 685f9631b5
commit 00ca6a6db4
17 changed files with 15666 additions and 0 deletions
+7
View File
@@ -0,0 +1,7 @@
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']