diff options
Diffstat (limited to 'tests/basics/globals-del.py')
-rw-r--r-- | tests/basics/globals-del.py | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/tests/basics/globals-del.py b/tests/basics/globals-del.py deleted file mode 100644 index a1638ac270..0000000000 --- a/tests/basics/globals-del.py +++ /dev/null @@ -1,27 +0,0 @@ -""" -1 -""" - -def _f(): pass -FunctionType = type(_f) -LambdaType = type(lambda: None) -CodeType = None -MappingProxyType = None -SimpleNamespace = None - -def _g(): - yield 1 -GeneratorType = type(_g()) - -class _C: - def _m(self): pass -MethodType = type(_C()._m) - -BuiltinFunctionType = type(len) -BuiltinMethodType = type([].append) - -del _f - -# print only the first 8 chars, since we have different str rep to CPython -print(str(FunctionType)[:8]) -print(str(BuiltinFunctionType)[:8]) |