core: blacklist Jython org.* by default too.

1 silly roundtrip.
This commit is contained in:
David Wilson 2018-04-11 02:10:12 +01:00
parent e5b784ed32
commit 8889708f24
1 changed files with 3 additions and 0 deletions

View File

@ -504,6 +504,9 @@ class Importer(object):
# always a negative round-trip. # always a negative round-trip.
'builtins', 'builtins',
'__builtin__', '__builtin__',
# org.python.core imported by copy, pickle, xml.sax; breaks Jython,
# but very unlikely to trigger a bug report.
'org',
] ]
# Presence of an entry in this map indicates in-flight GET_MODULE. # Presence of an entry in this map indicates in-flight GET_MODULE.