blob: 390ee8895a8a9e8c34760be828a9dba1e4f0b975 [file] [log] [blame]
Antoine Pitroudcedaf62013-07-31 23:14:08 +02001"""
2Fodder for module finalization tests in test_module.
3"""
4
5import shutil
6import test.final_b
7
8x = 'a'
9
10class C:
11 def __del__(self):
12 # Inspect module globals and builtins
13 print("x =", x)
14 print("final_b.x =", test.final_b.x)
15 print("shutil.rmtree =", getattr(shutil.rmtree, '__name__', None))
16 print("len =", getattr(len, '__name__', None))
17
18c = C()
19_underscored = C()