diff options
author | Raymond Hettinger <python@rcn.com> | 2004-10-17 16:36:53 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2004-10-17 16:36:53 (GMT) |
commit | 837dd93e3b038b80bc65c85352e5196097220388 (patch) | |
tree | 1c8273bdfc22400b6309b8296a58a06a6328fa10 | |
parent | 2562ff2de3cb968535df5713e76d843b1325b300 (diff) | |
download | cpython-837dd93e3b038b80bc65c85352e5196097220388.zip cpython-837dd93e3b038b80bc65c85352e5196097220388.tar.gz cpython-837dd93e3b038b80bc65c85352e5196097220388.tar.bz2 |
Fix docstring formatting of escape sequences.
-rw-r--r-- | Lib/subprocess.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/subprocess.py b/Lib/subprocess.py index 54702a0..76ea25f 100644 --- a/Lib/subprocess.py +++ b/Lib/subprocess.py @@ -25,7 +25,7 @@ # NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION # WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. -"""subprocess - Subprocesses with accessible I/O streams +r"""subprocess - Subprocesses with accessible I/O streams This module allows you to spawn processes, connect to their input/output/error pipes, and obtain their return codes. This module |