File tree Expand file tree Collapse file tree 5 files changed +8
-2108
lines changed
source_py2/python_toolbox/cute_inspect
source_py3/python_toolbox/cute_inspect Expand file tree Collapse file tree 5 files changed +8
-2108
lines changed Original file line number Diff line number Diff line change @@ -9,8 +9,6 @@ ignore_errors = True
99
1010omit =
1111 *third_party*
12- *forked_inspect*
13- *python26_site*
1412
1513[html]
1614directory = .coverage_html_report
Original file line number Diff line number Diff line change 44'''A fork of the standard-library `inspect` module.'''
55
66import types
7+ import inspect
78
8- from . import forked_inspect
9-
10- getargspec = forked_inspect .getargspec
11- getcallargs = forked_inspect .getcallargs
12- getsource = forked_inspect .getsource
9+ getargspec = inspect .getargspec
10+ getcallargs = inspect .getcallargs
11+ getsource = inspect .getsource
1312
1413###############################################################################
1514
You can’t perform that action at this time.
0 commit comments