From 8889708f2489591fd8dcfc1237ab566ed370eb2f Mon Sep 17 00:00:00 2001 From: David Wilson Date: Wed, 11 Apr 2018 02:10:12 +0100 Subject: [PATCH] core: blacklist Jython org.* by default too. 1 silly roundtrip. --- mitogen/core.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/mitogen/core.py b/mitogen/core.py index 8b5ba63a..1cdb4428 100644 --- a/mitogen/core.py +++ b/mitogen/core.py @@ -504,6 +504,9 @@ class Importer(object): # always a negative round-trip. 'builtins', '__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.