We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5651a19 commit d89fb34Copy full SHA for d89fb34
docs/security.rst
@@ -112,11 +112,11 @@ need to inserted into the script. Here is sample code::
112
'_pytransform', 'abspath', 'basename', 'byteorder',
113
'c_char_p', 'c_int', 'c_void_p', 'calcsize', 'cdll',
114
'dirname', 'encode', 'exists', 'exit',
115
- 'format_platname', 'init_pytransform', 'init_runtime',
116
- 'int', 'isinstance', 'join', 'lower', 'normpath', 'os',
117
- 'path', 'platform', 'print', 'pyarmor_init',
118
- 'pythonapi', 'restype', 'set_option', 'str', 'struct',
119
- 'sys', 'system', 'version_info')
+ 'format_platname', 'get_error_msg', 'init_pytransform',
+ 'init_runtime', 'int', 'isinstance', 'join', 'lower',
+ 'normpath', 'os', 'path', 'platform', 'print',
+ 'pyarmor_init', 'pythonapi', 'restype', 'set_option',
+ 'str', 'struct', 'sys', 'system', 'version_info')
120
121
def check_lib_pytransform(filename):
122
with open(filename, 'rb') as f:
src/examples/helloworld/foo.py
@@ -48,11 +48,11 @@ def check_mod_pytransform():
48
49
50
51
52
53
54
55
- 'sys', 'system', 'version_info'])
+ 'str', 'struct', 'sys', 'system', 'version_info'])
56
code = '__code__' if sys.version_info[0] == 3 else 'func_code'
57
closure = '__closure__' if sys.version_info[0] == 3 else 'func_closure'
58
0 commit comments