Exemplo n.º 1
0
 def finalize_options(self):
     fancy_getopt(self.user_options, {}, self, None)
Exemplo n.º 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
Exemplo n.º 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
Exemplo n.º 4
0
 def finalize_options(self):
     fancy_getopt(self.user_options, {}, self, None)