Message303166
Yet another code that causes a SystemError:
import zipimport
importer = zipimport.zipimporter('foo.zip')
tup_as_list = list(zipimport._zip_directory_cache['foo.zip']['foo\\__init__.py'])
tup_as_list[0] = None
zipimport._zip_directory_cache['foo.zip']['foo\\__init__.py'] = tuple(tup_as_list)
importer.load_module('foo')
This could be fixed by checking in get_code_from_data() whether modpath is a string. |
|
Date |
User |
Action |
Args |
2017-09-27 17:44:14 | Oren Milman | set | recipients:
+ Oren Milman |
2017-09-27 17:44:14 | Oren Milman | set | messageid: <1506534254.01.0.154975027568.issue31531@psf.upfronthosting.co.za> |
2017-09-27 17:44:14 | Oren Milman | link | issue31531 messages |
2017-09-27 17:44:13 | Oren Milman | create | |
|