Files
openide/python/helpers/pydev/tests_pydevd_python/_debugger_case19.py
T
2016-03-10 18:45:21 +03:00

11 lines
198 B
Python

class A:
def __init__(self):
self.__var = 10
if __name__ == '__main__':
a = A()
print(a._A__var)
# Evaluate 'a.__var' should give a._A__var_
print('TEST SUCEEDED')