Home | History | Annotate | Download | only in distutils

Lines Matching defs:getopt

3 Wrapper around the standard getopt module that provides the following
12 import getopt
30 """Wrapper around the standard 'getopt()' module that provides some
76 # And 'option_order' is filled up in 'getopt()'; it records the
135 option table. Called by 'getopt()' before it can do anything
210 def getopt(self, args=None, object=None):
217 'getopt()' just returns 'args'; in both cases, the returned
233 opts, args = getopt.getopt(args, short_opts, self.long_opts)
234 except getopt.error as msg:
273 previous run of 'getopt()'. Raises RuntimeError if
274 'getopt()' hasn't been called yet.
277 raise RuntimeError("'getopt()' hasn't been called yet")
286 # 'generate_help()' unless you've already called 'getopt()'.
370 return parser.getopt(args, object)