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: change statement for open() is splited into two part in middle of sentence.
Type: Stage: resolved
Components: Documentation Versions: Python 3.7, Python 3.6
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: Mariatta Nosy List: Jim Fasarakis-Hilliard, Mariatta, OSAMU.NAKAMURA, docs@python
Priority: normal Keywords:

Created on 2017-03-23 23:46 by OSAMU.NAKAMURA, last changed 2022-04-11 14:58 by admin. This issue is now closed.

Pull Requests
URL Status Linked Edit
PR 802 merged OSAMU.NAKAMURA, 2017-03-24 14:24
PR 810 merged Mariatta, 2017-03-25 02:56
Messages (5)
msg290070 - (view) Author: OSAMU NAKAMURA (OSAMU.NAKAMURA) * Date: 2017-03-23 23:46
In https://docs.python.org/3.6/library/functions.html#open , 
Following sentence is wrongly separated by extra asterisk.

```
FileExistsError is now raised if the file opened in exclusive
creation mode ('x') already exists.
```

This mistake is introduced by https://github.com/python/cpython/commit/3929499914d47365ae744df312e16da8955c90ac#diff-30d76a3dc0c885f86917b7d307ccf279
msg290071 - (view) Author: Jim Fasarakis-Hilliard (Jim Fasarakis-Hilliard) * Date: 2017-03-24 00:16
Indeed, nice catch! Submit a PR for it if you want to (if not, someone else will pick it up soon :-)
msg290459 - (view) Author: Mariatta (Mariatta) * (Python committer) Date: 2017-03-25 02:55
New changeset 29540cdf6c66df9f806375a95078c0c63192ef78 by Mariatta (NAKAMURA Osamu) in branch 'master':
bpo-29892: Fix wrong markup on doc-lib-functions (GH-802)
https://github.com/python/cpython/commit/29540cdf6c66df9f806375a95078c0c63192ef78
msg290460 - (view) Author: Mariatta (Mariatta) * (Python committer) Date: 2017-03-25 03:04
New changeset 5dafaece67cb576ef96579fb5ddcbf62e0827b0d by Mariatta in branch '3.6':
bpo-29892: Fix wrong markup on doc-lib-functions (GH-802) (GH-810)
https://github.com/python/cpython/commit/5dafaece67cb576ef96579fb5ddcbf62e0827b0d
msg290461 - (view) Author: Mariatta (Mariatta) * (Python committer) Date: 2017-03-25 03:06
PR was merged and backported into 3.6.

Thanks all :)
History
Date User Action Args
2022-04-11 14:58:44adminsetgithub: 74078
2017-03-25 03:06:14Mariattasetstatus: open -> closed
resolution: fixed
messages: + msg290461

stage: patch review -> resolved
2017-03-25 03:04:42Mariattasetmessages: + msg290460
2017-03-25 02:56:56Mariattasetpull_requests: + pull_request717
2017-03-25 02:55:11Mariattasetmessages: + msg290459
2017-03-24 18:38:31Mariattasetassignee: docs@python -> Mariatta

nosy: + Mariatta
2017-03-24 16:26:23Mariattasetstage: patch review
versions: + Python 3.7
2017-03-24 14:24:13OSAMU.NAKAMURAsetpull_requests: + pull_request707
2017-03-24 00:16:52Jim Fasarakis-Hilliardsetnosy: + Jim Fasarakis-Hilliard
messages: + msg290071
2017-03-23 23:46:18OSAMU.NAKAMURAcreate