blob: a6e7b290539c26eeeb02b54ce97f7a99dc073243 (
plain) (
blame)
1
2
3
4
5
6
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']
|