diff options
author | Andrew M. Kuchling <amk@amk.ca> | 2002-11-14 01:58:48 +0000 |
---|---|---|
committer | Andrew M. Kuchling <amk@amk.ca> | 2002-11-14 01:58:48 +0000 |
commit | f6756e8dd45d44ad65cc37e3f08e1b2328dcc929 (patch) | |
tree | f20eac5f121864b9fa3b75160c8fb0829d9e26f8 | |
parent | 1cace1a30a31d353dbd4a1f4760036c42b4114b9 (diff) | |
download | cpython-git-f6756e8dd45d44ad65cc37e3f08e1b2328dcc929.tar.gz |
Fix docstring typo; remove 'created' line
-rw-r--r-- | Lib/distutils/errors.py | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/Lib/distutils/errors.py b/Lib/distutils/errors.py index bec3464511..963d83377c 100644 --- a/Lib/distutils/errors.py +++ b/Lib/distutils/errors.py @@ -5,11 +5,9 @@ modules may raise standard exceptions; in particular, SystemExit is usually raised for errors that are obviously the end-user's fault (eg. bad command-line arguments). -This module safe to use in "from ... import *" mode; it only exports +This module is safe to use in "from ... import *" mode; it only exports symbols whose names start with "Distutils" and end with "Error".""" -# created 1999/03/03, Greg Ward - __revision__ = "$Id$" class DistutilsError (Exception): |