diff options
author | Ka-Ping Yee <ping@zesty.ca> | 2001-03-02 23:31:43 (GMT) |
---|---|---|
committer | Ka-Ping Yee <ping@zesty.ca> | 2001-03-02 23:31:43 (GMT) |
commit | feb671985134f24769f0e1f6bfcce5fac2a8d254 (patch) | |
tree | 78ca4958beea8bc6ae189852b8cfcd3c98850310 /Lib/os.py | |
parent | 81df7be2a27071f374b795e60095e7517f75e09b (diff) | |
download | cpython-feb671985134f24769f0e1f6bfcce5fac2a8d254.zip cpython-feb671985134f24769f0e1f6bfcce5fac2a8d254.tar.gz cpython-feb671985134f24769f0e1f6bfcce5fac2a8d254.tar.bz2 |
Use r""" instead of """ for the docstring so that backslashes are preserved.
Diffstat (limited to 'Lib/os.py')
-rw-r--r-- | Lib/os.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1,4 +1,4 @@ -"""OS routines for Mac, DOS, NT, or Posix depending on what system we're on. +r"""OS routines for Mac, DOS, NT, or Posix depending on what system we're on. This exports: - all functions from posix, nt, dos, os2, mac, or ce, e.g. unlink, stat, etc. |