mirror of
https://github.com/python/cpython.git
synced 2025-08-31 05:58:33 +00:00
Allow restricted code to get byteorder, getdefaultencoding(),
getrefcount(), maxunicode, and version_info.
This commit is contained in:
parent
83d0fd2fd1
commit
a0f453b2b1
1 changed files with 3 additions and 2 deletions
|
@ -143,8 +143,9 @@ class RExec(ihooks._Verbose):
|
|||
'stat', 'times', 'uname', 'getpid', 'getppid',
|
||||
'getcwd', 'getuid', 'getgid', 'geteuid', 'getegid')
|
||||
|
||||
ok_sys_names = ('copyright', 'exit', 'hexversion', 'maxint', 'platform',
|
||||
'ps1', 'ps2', 'version')
|
||||
ok_sys_names = ('byteorder', 'copyright', 'exit', 'getdefaultencoding',
|
||||
'getrefcount', 'hexversion', 'maxint', 'maxunicode',
|
||||
'platform', 'ps1', 'ps2', 'version', 'version_info')
|
||||
|
||||
nok_builtin_names = ('open', 'file', 'reload', '__import__')
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue