This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: tarfile.TarInfo.frombuf documentation is out of date
Type: behavior Stage: resolved
Components: Documentation Versions: Python 3.4, Python 3.5
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: docs@python Nosy List: StealthAsimov, berker.peksag, docs@python, martin.panter, python-dev, sebastinas
Priority: normal Keywords: patch

Created on 2012-08-06 10:24 by sebastinas, last changed 2022-04-11 14:57 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
issue15566.patch StealthAsimov, 2013-02-23 18:53 issue15566.patch review
Messages (5)
msg167553 - (view) Author: Sebastian Ramacher (sebastinas) Date: 2012-08-06 10:24
tarfile.TarInfo.frombuf has gained two more parameters: encoding and errors. The documentation of frombuf claims that the only parameter is buf, which is not true anymore.
msg182791 - (view) Author: Andy Holst (StealthAsimov) Date: 2013-02-23 18:53
The documentation updated for the tarfile.rst document. The arguments encoding and errors are added to tarfile.TarInfo.frombuf method. Patch uploaded.
msg241466 - (view) Author: Martin Panter (martin.panter) * (Python committer) Date: 2015-04-19 00:08
Very simple documentation fix; looks good to me.
msg241471 - (view) Author: Roundup Robot (python-dev) (Python triager) Date: 2015-04-19 01:32
New changeset d737ab3ea1ae by Berker Peksag in branch '3.4':
Issue #15566: Document encoding and errors parameters of TarInfo.frombuf().
https://hg.python.org/cpython/rev/d737ab3ea1ae

New changeset 85cba64e24dc by Berker Peksag in branch 'default':
Issue #15566: Document encoding and errors parameters of TarInfo.frombuf().
https://hg.python.org/cpython/rev/85cba64e24dc
msg241472 - (view) Author: Berker Peksag (berker.peksag) * (Python committer) Date: 2015-04-19 01:33
Thanks!
History
Date User Action Args
2022-04-11 14:57:33adminsetgithub: 59771
2015-04-19 01:33:32berker.peksagsetstatus: open -> closed

versions: - Python 3.2, Python 3.3
nosy: + berker.peksag

messages: + msg241472
resolution: fixed
stage: commit review -> resolved
2015-04-19 01:32:41python-devsetnosy: + python-dev
messages: + msg241471
2015-04-19 00:08:59martin.pantersetversions: + Python 3.4, Python 3.5
nosy: + martin.panter

messages: + msg241466

stage: needs patch -> commit review
2013-02-23 18:53:41StealthAsimovsetfiles: + issue15566.patch

nosy: + StealthAsimov
messages: + msg182791

keywords: + patch
2012-08-07 01:58:16meador.ingesettype: behavior
stage: needs patch
2012-08-06 10:24:20sebastinascreate