summaryrefslogtreecommitdiff
path: root/fancy_getopt.py
diff options
context:
space:
mode:
authorTarek Ziadé <ziade.tarek@gmail.com>2009-09-21 13:01:54 +0000
committerTarek Ziadé <ziade.tarek@gmail.com>2009-09-21 13:01:54 +0000
commitf0f1b0325d3f06a06ab03c6912ea9743e9c30ff2 (patch)
treee9b194d929f4a60a359fa993cc612cbef8b75935 /fancy_getopt.py
parent589e2a746f2e3812fe1e7840391a61b20b3fdaf4 (diff)
downloadpython-setuptools-git-f0f1b0325d3f06a06ab03c6912ea9743e9c30ff2.tar.gz
Merged revisions 74988 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk ........ r74988 | tarek.ziade | 2009-09-21 14:19:07 +0200 (Mon, 21 Sep 2009) | 1 line improved distutils test coverage: now the DEBUG mode is covered too (will help fix the issue #6954 in py3k branch) ........
Diffstat (limited to 'fancy_getopt.py')
-rw-r--r--fancy_getopt.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/fancy_getopt.py b/fancy_getopt.py
index 72441fb4..879d4d25 100644
--- a/fancy_getopt.py
+++ b/fancy_getopt.py
@@ -26,7 +26,7 @@ neg_alias_re = re.compile("^(%s)=!(%s)$" % (longopt_pat, longopt_pat))
# This is used to translate long options to legitimate Python identifiers
# (for use as attributes of some object).
-longopt_xlate = lambda s: s.replace('-', '_')
+longopt_xlate = str.maketrans('-', '_')
class FancyGetopt:
"""Wrapper around the standard 'getopt()' module that provides some
@@ -107,7 +107,7 @@ class FancyGetopt:
"""Translate long option name 'long_option' to the form it
has as an attribute of some object: ie., translate hyphens
to underscores."""
- return longopt_xlate(long_option)
+ return long_option.translate(longopt_xlate)
def _check_alias_dict(self, aliases, what):
assert isinstance(aliases, dict)
@@ -432,7 +432,7 @@ def translate_longopt(opt):
"""Convert a long option name to a valid Python identifier by
changing "-" to "_".
"""
- return longopt_xlate(opt)
+ return opt.translate(longopt_xlate)
class OptionDummy: