Staging
v0.5.1
https://github.com/python/cpython
Revision 311101f7b6d71d634382cdd943ef3dfcb402aa93 authored by Ned Deily on 26 September 2018, 06:35:30 UTC, committed by Ned Deily on 26 September 2018, 06:35:30 UTC
1 parent adf4932
Raw File
Tip revision: 311101f7b6d71d634382cdd943ef3dfcb402aa93 authored by Ned Deily on 26 September 2018, 06:35:30 UTC
3.6.7rc1
Tip revision: 311101f
final_a.py
"""
Fodder for module finalization tests in test_module.
"""

import shutil
import test.final_b

x = 'a'

class C:
    def __del__(self):
        # Inspect module globals and builtins
        print("x =", x)
        print("final_b.x =", test.final_b.x)
        print("shutil.rmtree =", getattr(shutil.rmtree, '__name__', None))
        print("len =", getattr(len, '__name__', None))

c = C()
_underscored = C()
back to top