[issue37694] Crash when calling zipimport.zipimporter.__new__().()

2021-09-03 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Because the zipimport module is now implemented in Python. -- ___ Python tracker ___ ___ Python

[issue37694] Crash when calling zipimport.zipimporter.__new__().()

2021-09-02 Thread Irit Katriel
Irit Katriel added the comment: Closing as 2.7 and 3.6 are no longer maintained, and you say the crash was gone in 3.7+. On 3.11 it indeed doesn't crash: >>> zipimport.zipimporter.__new__(zipimport.zipimporter).find_module('') :158: DeprecationWarning: zipimporter.find_module() is depreca

[issue37694] Crash when calling zipimport.zipimporter.__new__().()

2019-07-27 Thread Karthikeyan Singaravelan
Change by Karthikeyan Singaravelan : -- nosy: +serhiy.storchaka ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe

[issue37694] Crash when calling zipimport.zipimporter.__new__().()

2019-07-27 Thread Alexandre Hamelin
New submission from Alexandre Hamelin : Found a crash with zipimport.zipimporter. Might or might not be related to Issue31723 which I've found searching the issues afterwards. import zipimport zipimport.zipimporter.__new__(zipimport.zipimporter).find_module('') Python 2.7 and 3.6. See