Change by John Jolly :
--
nosy: +gregory.p.smith
___
Python tracker
<https://bugs.python.org/issue28494>
___
___
Python-bugs-list mailing list
Unsubscribe:
John Jolly added the comment:
Is there any chance that this will make it into 3.7 or is my reminder too late?
--
___
Python tracker
<https://bugs.python.org/issue28
John Jolly added the comment:
I understand that the feature is likely too late, but I do not want it to get
lost. Is there any way to make certain this feature is accepted for the next
release? Do I just select the 3.8 version for this issue
Change by John Jolly :
--
pull_requests: +5098
stage: -> patch review
___
Python tracker
<https://bugs.python.org/issue32476>
___
___
Python-bugs-list mai
Change by John Jolly :
--
nosy: +eli.bendersky
___
Python tracker
<https://bugs.python.org/issue32476>
___
___
Python-bugs-list mailing list
Unsubscribe:
New submission from John Jolly :
The current implementation of the xpath specification in ElementTree does not
allow for predicates that may contain both an apostrophe and a quote. Either
one or the other is allowed, but escaping (either string escaping using the
backslash or html escaping
John Jolly added the comment:
Fix submitted that evaluates the ECD structure and validates the first CD
entry. The fix also handles empty zipfiles.
IMO the purpose of this API is to *quickly* verify that the file is a valid
zipfile. With this fix, the API only reads another 46 bytes of data
Change by John Jolly :
--
pull_requests: +4934
stage: -> patch review
___
Python tracker
<https://bugs.python.org/issue28494>
___
___
Python-bugs-list mai
John Jolly added the comment:
Please be gentle, this is my first submission to python.
The use case for me was a recursive zip-within-a-zip situation. I wanted to
allow the creation of a zipfile.ZipFile from an existing zipfile.ZipExtFile,
but the lack of seek prevented this.
I simply