[issue37408] [DOC] Precise that Tarfile "format" argument only concerns writing.

2020-09-19 Thread Gregory P. Smith
Change by Gregory P. Smith : -- resolution: -> fixed stage: backport needed -> resolved status: open -> closed ___ Python tracker ___ _

[issue37408] [DOC] Precise that Tarfile "format" argument only concerns writing.

2020-09-19 Thread Irit Katriel
Irit Katriel added the comment: I think this is complete and can now be closed. -- nosy: +iritkatriel ___ Python tracker ___ ___ Py

[issue37408] [DOC] Precise that Tarfile "format" argument only concerns writing.

2019-09-30 Thread Łukasz Langa
Łukasz Langa added the comment: New changeset 1aeb720d64021e544043ca4619a44a7da0cd00dd by Łukasz Langa (Miss Islington (bot)) in branch '3.8': bpo-37408: Precise that Tarfile "format" argument only concerns writing. (GH-14389) (#16465) https://github.com/python/cpython/commit/1aeb720d64021e54

[issue37408] [DOC] Precise that Tarfile "format" argument only concerns writing.

2019-09-28 Thread Gregory P. Smith
Change by Gregory P. Smith : -- assignee: -> docs@python components: +Documentation -Library (Lib) nosy: +docs@python stage: patch review -> backport needed ___ Python tracker ___

[issue37408] [DOC] Precise that Tarfile "format" argument only concerns writing.

2019-09-28 Thread Gregory P. Smith
Change by Gregory P. Smith : -- versions: +Python 3.8 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https:/

[issue37408] [DOC] Precise that Tarfile "format" argument only concerns writing.

2019-09-28 Thread miss-islington
Change by miss-islington : -- pull_requests: +16050 pull_request: https://github.com/python/cpython/pull/16465 ___ Python tracker ___ __

[issue37408] [DOC] Precise that Tarfile "format" argument only concerns writing.

2019-09-28 Thread Gregory P. Smith
Gregory P. Smith added the comment: New changeset c5a7e0ce194c0eafe82eb3e431881012398e7d46 by Gregory P. Smith (Pascal Chambon) in branch 'master': bpo-37408: Precise that Tarfile "format" argument only concerns writing. (GH-14389) https://github.com/python/cpython/commit/c5a7e0ce194c0eafe82

[issue37408] [DOC] Precise that Tarfile "format" argument only concerns writing.

2019-06-26 Thread Karthikeyan Singaravelan
Change by Karthikeyan Singaravelan : -- nosy: +lars.gustaebel, serhiy.storchaka type: -> behavior versions: +Python 3.9 ___ Python tracker ___

[issue37408] [DOC] Precise that Tarfile "format" argument only concerns writing.

2019-06-26 Thread Pascal Chambon
Pascal Chambon added the comment: Looking at tarfile.py, "format" seems only used in addfile() indeed. -- ___ Python tracker ___ __

[issue37408] [DOC] Precise that Tarfile "format" argument only concerns writing.

2019-06-26 Thread Roundup Robot
Change by Roundup Robot : -- keywords: +patch pull_requests: +14203 stage: -> patch review pull_request: https://github.com/python/cpython/pull/14389 ___ Python tracker ___ __

[issue37408] [DOC] Precise that Tarfile "format" argument only concerns writing.

2019-06-26 Thread Pascal Chambon
Pascal Chambon added the comment: My bad, this was a wrongly targeted PR, the real one is here: https://github.com/python/cpython/pull/14389 -- ___ Python tracker ___ ___

[issue37408] [DOC] Precise that Tarfile "format" argument only concerns writing.

2019-06-26 Thread Pascal Chambon
Pascal Chambon added the comment: PR is on https://github.com/pakal/cpython/pull/1 -- ___ Python tracker ___ ___ Python-bugs-list m

[issue37408] [DOC] Precise that Tarfile "format" argument only concerns writing.

2019-06-26 Thread Pascal Chambon
New submission from Pascal Chambon : According to https://bugs.python.org/issue30661#msg339300 , "format" argument of Tarfile.open() only concerns the writing of files. It's worth mentioning it in the doc, if it's True (confirmation from core maintainers is welcome). -- components: Li