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: os.py (unexpected character)
Type: enhancement Stage:
Components: Versions: Python 3.3
process
Status: closed Resolution: not a bug
Dependencies: Superseder:
Assigned To: Nosy List: anuj, corto.nexus, ezio.melotti
Priority: normal Keywords:

Created on 2013-03-18 11:19 by corto.nexus, last changed 2022-04-11 14:57 by admin. This issue is now closed.

Messages (3)
msg184446 - (view) Author: Corto Nexus (corto.nexus) Date: 2013-03-18 11:19
In Python 3.3 (Windows 32bits) the lib os.py start with an uncommented letter 'r'.
msg184448 - (view) Author: Ezio Melotti (ezio.melotti) * (Python committer) Date: 2013-03-18 11:25
os.py starts with:
r"""OS routines for Mac, NT, or Posix depending on what system we're on.
[...]

Do you see only the 'r'?
msg184449 - (view) Author: Anuj Gupta (anuj) * Date: 2013-03-18 11:28
http://docs.python.org/3/tutorial/introduction.html#strings

This seems like a good opportunity for you to learn about "raw" strings. :)
History
Date User Action Args
2022-04-11 14:57:43adminsetgithub: 61658
2013-03-18 11:35:31christian.heimessetstatus: open -> closed
resolution: not a bug
2013-03-18 11:28:44anujsetnosy: + anuj
messages: + msg184449
2013-03-18 11:25:15ezio.melottisetnosy: + ezio.melotti
messages: + msg184448
2013-03-18 11:19:05corto.nexuscreate