From: Andrew M. Kuchling Date: Thu, 14 Nov 2002 01:58:48 +0000 (+0000) Subject: Fix docstring typo; remove 'created' line X-Git-Tag: v2.3c1~3432 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=f6756e8dd45d44ad65cc37e3f08e1b2328dcc929;p=thirdparty%2FPython%2Fcpython.git Fix docstring typo; remove 'created' line --- diff --git a/Lib/distutils/errors.py b/Lib/distutils/errors.py index bec346451128..963d83377c08 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):