diff options
author | Tim Peters <tim.peters@gmail.com> | 2004-07-18 00:08:11 +0000 |
---|---|---|
committer | Tim Peters <tim.peters@gmail.com> | 2004-07-18 00:08:11 +0000 |
commit | 264c659197bcd2fc3e22776fc711f31b953daae5 (patch) | |
tree | 890412a726fb41b27d5013f4acdea5a9fab9b7be /Lib/types.py | |
parent | fa7809df023562780c0932bfc554ec8e6559cf37 (diff) | |
download | cpython-git-264c659197bcd2fc3e22776fc711f31b953daae5.tar.gz |
Oops! Restored the pickle test to test_pyclbr, but changed types.py so
that pyclbr doesn't need to special-case modules that do "from types
import *".
Diffstat (limited to 'Lib/types.py')
-rw-r--r-- | Lib/types.py | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/Lib/types.py b/Lib/types.py index 0d2905d815..39812ac322 100644 --- a/Lib/types.py +++ b/Lib/types.py @@ -48,10 +48,9 @@ except RuntimeError: # Execution in restricted environment pass -def g(): +def _g(): yield 1 -GeneratorType = type(g()) -del g +GeneratorType = type(_g()) class _C: def _m(self): pass @@ -87,4 +86,4 @@ EllipsisType = type(Ellipsis) DictProxyType = type(TypeType.__dict__) NotImplementedType = type(NotImplemented) -del sys, _f, _C, _x # Not for export +del sys, _f, _g, _C, _x # Not for export |