Пример #1
0
 def finalize_options(self):
     fancy_getopt(self.user_options, {}, self, None)
Пример #2
0
 def finalize_options(self):
     args, obj = fancy_getopt(self.user_options, {}, None, None)
     # Ugly as sin, but distutils forced me to do it :(
     # All I wanted was this command to default to quiet...
     if "--verbose" not in args and "-v" not in args:
         self.verbose = 0
Пример #3
0
 def finalize_options(self):
     args, obj = fancy_getopt(self.user_options, {}, None, None)
     # Ugly as sin, but distutils forced me to do it :(
     # All I wanted was this command to default to quiet...
     if "--verbose" not in args and "-v" not in args:
         self.verbose = 0
Пример #4
0
 def finalize_options(self):
     fancy_getopt(self.user_options, {}, self, None)