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
+12
View File
@@ -0,0 +1,12 @@
from inspect import getfullargspec as _getfullargspec
def getargspec(method):
args, varargs, keywords, defaults, _, _, _ = _getfullargspec(method)
return args, varargs, keywords, defaults
def raise_with_traceback(exc, tb):
raise exc.with_traceback(tb)
def raise_from_none(exc):
raise exc from None