Tarek Ziadé
2b66da7d15
massive import cleaning in Distutils
2009-12-21 01:22:46 +00:00
Tarek Ziadé
9f369e9163
Issue #5052 : removed backward compatibility information (out of date)
2009-01-25 22:09:10 +00:00
Guido van Rossum
8bc0965adf
Removed uses of dict.has_key() from distutils, and uses of
...
callable() from copy_reg.py, so the interpreter now starts up
without warnings when '-3' is given. More work like this needs to
be done in the rest of the stdlib.
2008-02-21 18:18:37 +00:00
Martin v. Löwis
5a6601cfc6
Update compatibility comments to 2.1, corresponding to PEP 291 1.13.
2004-11-10 22:23:15 +00:00
Fred Drake
576298d3b2
- fix description of option table entries
...
- fix broken assert statement; should just raise
2004-08-02 17:58:51 +00:00
Walter Dörwald
70a6b49821
Replace backticks with repr() or "%r"
...
From SF patch #852334 .
2004-02-12 17:35:32 +00:00
Andrew M. Kuchling
d448f66317
Add comment to Distutil files about requiring 1.5.2 compatibility, as
...
suggested by PEP 291.
2002-11-19 13:12:28 +00:00
Andrew M. Kuchling
a6483d2e9a
Remove 'created by' lines; people can use CVS for this, and the information is often out of date
2002-11-14 02:25:42 +00:00
Jeremy Hylton
8f787bf1d0
Test changes before checking them in.
2002-06-04 21:11:56 +00:00
Jeremy Hylton
40ebbeff23
Track extra arg to option_table to all uses of it
2002-06-04 21:10:35 +00:00
Jeremy Hylton
d53f6e43e7
global _option_order is not used
2002-06-04 20:35:10 +00:00
Jeremy Hylton
a181ec07af
Set repeat metadata for an option based on repeat local var not
...
constant.
2002-06-04 20:24:05 +00:00
Jeremy Hylton
cd8a1148e1
Make setup.py less chatty by default.
...
This is a conservative version of SF patch 504889. It uses the log
module instead of calling print in various places, and it ignores the
verbose argument passed to many functions and set as an attribute on
some objects. Instead, it uses the verbosity set on the logger via
the command line.
The log module is now preferred over announce() and warn() methods
that exist only for backwards compatibility.
XXX This checkin changes a lot of modules that have no test suite and
aren't exercised by the Python build process. It will need
substantial testing.
2002-06-04 20:14:43 +00:00
Fred Drake
b94b849d65
Whitespace normalization.
2001-12-06 20:51:35 +00:00
Andrew M. Kuchling
affadeb9fd
Use correct variable name
2001-08-09 20:57:46 +00:00
Greg Ward
071ed76732
Standardize whitespace in function calls.
2000-09-26 02:12:31 +00:00
Greg Ward
68ded6e6f1
Added 'translate_longopt()' function.
2000-09-25 01:58:31 +00:00
Greg Ward
46a69b9c7f
Added docstring for 'wrap()' function.
2000-08-30 17:16:27 +00:00
Greg Ward
0fd2dd6db0
Fix so we clear or reinitialize various data structures before populating
...
(allows the same FancyGetopt object to be used multiple times with different
option tables).
2000-08-07 00:45:51 +00:00
Greg Ward
373dbfa723
Fixed so we print more than just the first line of help for options with
...
a short form and text that wraps onto multiple lines.
2000-06-08 00:35:33 +00:00
Greg Ward
981f7368f6
Don't take advantage of OptionDummy's new "auto-initialization" feature
...
after all -- turns out it doesn't buy us much after all...
2000-05-23 03:53:10 +00:00
Greg Ward
3c67b1dd08
OptionDummy now has a constructor that takes a list of options: each string
...
in the option list is an attribute of the OptionDummy that will be
initialized to None.
2000-05-23 01:44:20 +00:00
Greg Ward
66bf446273
Patch from Harry Henry Gebel: fix two stupid bugs in help-printing stuff.
2000-04-23 02:50:45 +00:00
Greg Ward
1e7b509526
Added the capability for alias options.
2000-04-21 04:22:01 +00:00
Greg Ward
320df700dc
Added 'has_option()', 'get_attr_name()' methods.
2000-04-21 02:31:07 +00:00