Issue 13935: Tarfile - Fixed GNU tar header base-256 handling (original) (raw)

Created on 2012-02-03 18:56 by canto, last changed 2022-04-11 14:57 by admin. This issue is now closed.

Messages (2)
msg152550 - (view) Author: Oskar Wycislak (canto) Date: 2012-02-03 18:56
On line 199 in tarfile.py comparison should be done without chr() because s[0] is an integer. Also on line 208 there should be no ord() for the same reason. I think this is fixed in Python 3.3 I'm sorry for not providing a patch but it's late and I do not have mercurial installed.
msg152599 - (view) Author: Lars Gustäbel (lars.gustaebel) * (Python committer) Date: 2012-02-04 08:15
This has been fixed (, http://hg.python.org/cpython/rev/341008eab87d). Thanks anyway for the report.
History
Date User Action Args
2022-04-11 14:57:26 admin set github: 58143
2012-02-04 08:15:30 lars.gustaebel set status: open -> closedresolution: duplicatemessages: + stage: resolved
2012-02-04 07:46:16 lars.gustaebel set assignee: lars.gustaebelnosy: + lars.gustaebel
2012-02-03 18:56:30 canto create