[Python-checkins] r67217 - python/branches/release25-maint/Lib/optparse.py

andrew.kuchling python-checkins at python.org
Fri Nov 14 01:17:12 CET 2008


Author: andrew.kuchling
Date: Fri Nov 14 01:17:12 2008
New Revision: 67217

Log:
Backport r66813: per Greg Ward, optparse is no longer being externally maintained.

Modified:
   python/branches/release25-maint/Lib/optparse.py

Modified: python/branches/release25-maint/Lib/optparse.py
==============================================================================
--- python/branches/release25-maint/Lib/optparse.py	(original)
+++ python/branches/release25-maint/Lib/optparse.py	Fri Nov 14 01:17:12 2008
@@ -1,21 +1,13 @@
-"""optparse - a powerful, extensible, and easy-to-use option parser.
+"""A powerful, extensible, and easy-to-use option parser.
 
 By Greg Ward <gward at python.net>
 
-Originally distributed as Optik; see http://optik.sourceforge.net/ .
-
-If you have problems with this module, please do not file bugs,
-patches, or feature requests with Python; instead, use Optik's
-SourceForge project page:
-  http://sourceforge.net/projects/optik
+Originally distributed as Optik.
 
 For support, use the optik-users at lists.sourceforge.net mailing list
 (http://lists.sourceforge.net/lists/listinfo/optik-users).
 """
 
-# Python developers: please do not make changes to this file, since
-# it is automatically generated from the Optik source code.
-
 __version__ = "1.5.3"
 
 __all__ = ['Option',


More information about the Python-checkins mailing list