Skip to content

Commit f985d24

Browse files
committed
-
1 parent f882c7c commit f985d24

File tree

5 files changed

+8
-2108
lines changed

5 files changed

+8
-2108
lines changed

.coveragerc

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,6 @@ ignore_errors = True
99

1010
omit =
1111
*third_party*
12-
*forked_inspect*
13-
*python26_site*
1412

1513
[html]
1614
directory = .coverage_html_report

source_py2/python_toolbox/cute_inspect/__init__.py

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,11 @@
44
'''A fork of the standard-library `inspect` module.'''
55

66
import 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

0 commit comments

Comments
 (0)