Files
example-code-2e/11-pythonic-obj/private/no_respect.py
2019-04-06 07:11:08 -03:00

18 lines
421 B
Python

"""
In the Jython registry file there is this line:
python.security.respectJavaAccessibility = true
Set this to false and Jython provides access to non-public
fields, methods, and constructors of Java objects.
"""
import Confidential
message = Confidential('top secret text')
for name in dir(message):
attr = getattr(message, name)
if not callable(attr): # non-methods only
print name + '\t=', attr