mirror of
https://github.com/python/cpython.git
synced 2025-11-24 20:30:18 +00:00
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 *".
This commit is contained in:
parent
fa7809df02
commit
264c659197
2 changed files with 4 additions and 4 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue