[Python-checkins] python/dist/src/Lib/distutils fancy_getopt.py,1.22,1.23

jhylton@users.sourceforge.net jhylton@users.sourceforge.net
Tue, 04 Jun 2002 13:35:12 -0700


Update of /cvsroot/python/python/dist/src/Lib/distutils
In directory usw-pr-cvs1:/tmp/cvs-serv13607

Modified Files:
	fancy_getopt.py 
Log Message:
global _option_order is not used


Index: fancy_getopt.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/distutils/fancy_getopt.py,v
retrieving revision 1.22
retrieving revision 1.23
diff -C2 -d -r1.22 -r1.23
*** fancy_getopt.py	4 Jun 2002 20:24:05 -0000	1.22
--- fancy_getopt.py	4 Jun 2002 20:35:10 -0000	1.23
***************
*** 32,41 ****
  longopt_xlate = string.maketrans('-', '_')
  
- # This records (option, value) pairs in the order seen on the command line;
- # it's close to what getopt.getopt() returns, but with short options
- # expanded.  (Ugh, this module should be OO-ified.)
- _option_order = None
- 
- 
  class FancyGetopt:
      """Wrapper around the standard 'getopt()' module that provides some
--- 32,35 ----