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 serhiy.storchaka
Recipients brett.cannon, eric.snow, ncoghlan, serhiy.storchaka
Date 2016-06-30.08:43:23
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1467276204.15.0.833115394606.issue27419@psf.upfronthosting.co.za>
In-reply-to
Content
Here is a reproducer for the first bug.

In Python 3.6:

$ ./python import_bug_1.py
1738
738
Fatal Python error: deallocating None

Current thread 0xb7552700 (most recent call first):
Aborted (core dumped)

In Python 3.5:

$ ./python import_bug_1.py
1709
Traceback (most recent call last):
  File "import_bug_1.py", line 10, in <module>
    from .foo import bar
SystemError: Parent module '' not loaded, cannot perform relative import
History
Date User Action Args
2016-06-30 08:43:24serhiy.storchakasetrecipients: + serhiy.storchaka, brett.cannon, ncoghlan, eric.snow
2016-06-30 08:43:24serhiy.storchakasetmessageid: <1467276204.15.0.833115394606.issue27419@psf.upfronthosting.co.za>
2016-06-30 08:43:24serhiy.storchakalinkissue27419 messages
2016-06-30 08:43:23serhiy.storchakacreate