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: typo in subprocess.py
Type: Stage:
Components: Library (Lib) Versions: Python 3.0
process
Status: closed Resolution: not a bug
Dependencies: Superseder:
Assigned To: Nosy List: benjamin.peterson, ott--
Priority: normal Keywords:

Created on 2009-02-25 16:08 by ott--, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Messages (2)
msg82707 - (view) Author: Joachim Ott (ott--) Date: 2009-02-25 16:08
I saw it first in /usr/lib/python2.5/subprocess.py on two different
systems, line 12 reads:

r"""subprocess - Subprocesses with accessible I/O streams

It's still there in 3.0.1. Is a single "r" a valid python statement?
msg82716 - (view) Author: Benjamin Peterson (benjamin.peterson) * (Python committer) Date: 2009-02-25 20:14
The prefix "r" on a string makes it a raw string, certainly a valid
construct.
History
Date User Action Args
2022-04-11 14:56:46adminsetgithub: 49617
2009-02-25 20:14:18benjamin.petersonsetstatus: open -> closed
resolution: not a bug
messages: + msg82716
nosy: + benjamin.peterson
2009-02-25 16:08:09ott--create