summaryrefslogtreecommitdiffstats
path: root/Lib/distutils/fancy_getopt.py
diff options
context:
space:
mode:
authorJeremy Hylton <jeremy@alum.mit.edu>2002-06-04 20:35:10 (GMT)
committerJeremy Hylton <jeremy@alum.mit.edu>2002-06-04 20:35:10 (GMT)
commitd53f6e43e76a2ddba989ddd59d7be57c4f84d10d (patch)
tree4835f91af0876c3802fd4af1111783c6ccfebb02 /Lib/distutils/fancy_getopt.py
parente6f40ea4b668ae615b1f48461a4875d966b2915a (diff)
downloadcpython-d53f6e43e76a2ddba989ddd59d7be57c4f84d10d.zip
cpython-d53f6e43e76a2ddba989ddd59d7be57c4f84d10d.tar.gz
cpython-d53f6e43e76a2ddba989ddd59d7be57c4f84d10d.tar.bz2
global _option_order is not used
Diffstat (limited to 'Lib/distutils/fancy_getopt.py')
-rw-r--r--Lib/distutils/fancy_getopt.py6
1 files changed, 0 insertions, 6 deletions
diff --git a/Lib/distutils/fancy_getopt.py b/Lib/distutils/fancy_getopt.py
index cb89e07..2ed29a2 100644
--- a/Lib/distutils/fancy_getopt.py
+++ b/Lib/distutils/fancy_getopt.py
@@ -31,12 +31,6 @@ neg_alias_re = re.compile("^(%s)=!(%s)$" % (longopt_pat, longopt_pat))
# (for use as attributes of some object).
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
handy extra functionality: