We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ce1d31e commit 1ce987eCopy full SHA for 1ce987e
1 file changed
Lib/inspect.py
@@ -153,7 +153,9 @@
153
import itertools
154
import linecache
155
import os
156
+lazy import re
157
import sys
158
+lazy import tokenize
159
import token
160
import types
161
import functools
@@ -163,9 +165,6 @@
163
165
from collections import namedtuple, OrderedDict
164
166
from _weakref import ref as make_weakref
167
-lazy import re
-lazy import tokenize
168
-
169
# Create constants for the compiler flags in Include/cpython/code.h
170
# We try to get them from dis to avoid duplication
171
mod_dict = globals()
0 commit comments