This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author ppperry
Recipients brett.cannon, eric.snow, ncoghlan, ppperry, serhiy.storchaka
Date 2017-07-08.13:27:49
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1499520469.8.0.838652313807.issue30873@psf.upfronthosting.co.za>
In-reply-to
Content
Interesting. For you, `_pickle` seems to be an extension module, which is thus trying to call `imp.create_dynamic`, whereas for me it is a builtin module. Perhaps that explains why you get a KeyError and I get a SystemError (my traceback ends with):
  File "C:\Program Files\Python36\lib\importlib\_bootstrap.py", line 560, in module_from_spec
    module = spec.loader.create_module(spec)
  File "C:\Program Files\Python36\lib\importlib\_bootstrap.py", line 725, in create_module
    return _call_with_frames_removed(_imp.create_builtin, spec)
  File "C:\Program Files\Python36\lib\importlib\_bootstrap.py", line 205, in _call_with_frames_removed
    return f(*args, **kwds)
SystemError: <built-in function create_builtin> returned NULL without setting an error
(and is the same as your 3.6 traceback up to that point)
History
Date User Action Args
2017-07-08 13:27:49ppperrysetrecipients: + ppperry, brett.cannon, ncoghlan, eric.snow, serhiy.storchaka
2017-07-08 13:27:49ppperrysetmessageid: <1499520469.8.0.838652313807.issue30873@psf.upfronthosting.co.za>
2017-07-08 13:27:49ppperrylinkissue30873 messages
2017-07-08 13:27:49ppperrycreate