[issue19081] zipimport behaves badly when the zip file changes while the process is running

2020-09-13 Thread Daniel Jewell
Daniel Jewell added the comment: In playing with Lib/zipfile.py and Lib/zipimport.py, I noticed that zipfile has supported opportunistic loading of bz2/lzma for ~9 years. However, zipimport assumes only zlib will be used. (Yet, zipfile.PyZipFile will happily create zlib/bz2/lzma ZIP

[issue27580] CSV Null Byte Error

2020-05-29 Thread Daniel Jewell
Daniel Jewell added the comment: Forgive my frustration, but @Skip I really don't see how the definition of CSV relating to Excel (or Gnumeric or LibreOffice) has any relevance as to whether or not the module (and perhaps Python more generally) supports chr(0x00) as a delimiter. (Ne

[issue26175] Fully implement IOBase abstract on SpooledTemporaryFile

2020-05-13 Thread Daniel Jewell
Daniel Jewell added the comment: To add something additional here: The current documentation for tempfile.SpooledTemporaryFile indicates "This function operates exactly as TemporaryFile() does, except that data is spooled in memory until the file size exceeds max_size[...]" (