summaryrefslogtreecommitdiff
path: root/Lib/shlex.py
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>2000-02-04 15:28:42 +0000
committerGuido van Rossum <guido@python.org>2000-02-04 15:28:42 +0000
commite7b146fb3bdca62a0d5ecc06dbf3348e5a4fe757 (patch)
treee1dda862f680cf4a1169220af2ecbca3322caf4d /Lib/shlex.py
parent54f22ed30bab2e64909ba2d79205cb4b87c69db2 (diff)
downloadcpython-git-e7b146fb3bdca62a0d5ecc06dbf3348e5a4fe757.tar.gz
The third and final doc-string sweep by Ka-Ping Yee.
The attached patches update the standard library so that all modules have docstrings beginning with one-line summaries. A new docstring was added to formatter. The docstring for os.py was updated to mention nt, os2, ce in addition to posix, dos, mac.
Diffstat (limited to 'Lib/shlex.py')
-rw-r--r--Lib/shlex.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/Lib/shlex.py b/Lib/shlex.py
index 6eba4c8777..c1ee02d8ec 100644
--- a/Lib/shlex.py
+++ b/Lib/shlex.py
@@ -1,3 +1,5 @@
+"""A lexical analyzer class for simple shell-like syntaxes."""
+
# Module and documentation by Eric S. Raymond, 21 Dec 1998
import sys