[docs] [issue27306] Grammatical Error in Documentation - Tarfile page
Phil Jeffes
report at bugs.python.org
Mon Jun 13 08:16:59 EDT 2016
New submission from Phil Jeffes:
On the tarfile page (https://docs.python.org/3.5/library/tarfile.html) there is a line which reads:
mode is either 'r' to read from an existing archive, 'a' to append data to an existing file, 'w' to create a new file overwriting an existing one or 'x' to create a new file only if it’s not exists.
and it should read:
mode is either 'r' to read from an existing archive, 'a' to append data to an existing file, 'w' to create a new file overwriting an existing one or 'x' to create a new file only if *it does not already exist*.
(Suggested changes surrounded by * *)
----------
assignee: docs at python
components: Documentation
messages: 268435
nosy: Phil Jeffes, docs at python
priority: normal
severity: normal
status: open
title: Grammatical Error in Documentation - Tarfile page
type: behavior
versions: Python 3.5
_______________________________________
Python tracker <report at bugs.python.org>
<http://bugs.python.org/issue27306>
_______________________________________
More information about the docs
mailing list