New submission from Barry A. Warsaw <ba...@python.org>:

Over in https://gitlab.com/python-devs/importlib_resources/issues/48 we have a 
report of a FileNotFoundError when trying to read a resource from a zip file.  
Upon further debugging, I found that zipimport's loader.get_data() raises an 
unexpected OSError.  Interestingly, if the path to the zip file is absolute, 
everything works as expected, but if the path is relative, then it fails.

There's probably a missing abspath() in there somewhere, but as zipimport is 
written in C, I really didn't spend much time digging around in gdb.

----------
messages: 312296
nosy: barry
priority: normal
severity: normal
status: open
title: zipimport loader.get_data() requires absolute zip file path
versions: Python 3.6, Python 3.7, Python 3.8

_______________________________________
Python tracker <rep...@bugs.python.org>
<https://bugs.python.org/issue32866>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to