- 18 Sep, 2000 1 commit
-
-
Greg Ward authored
-
- 17 Sep, 2000 6 commits
-
-
Fred Drake authored
Deprecated sequenceIncludes(). Based on patch by Denis S. Otkidach <ods@users.sourceforge.net>, this closes SourceForge patch #101390.
-
Fred Drake authored
Add contains() as alias for __contains__(). Make PyArg_ParseTuple() formats include the function name. Based on patch by Denis S. Otkidach <ods@users.sourceforge.net>, this closes SourceForge patch #101390.
-
Tim Peters authored
that Py_INCREF boosts global _Py_RefTotal when Py_REF_DEBUG is defined but Py_TRACE_REFS isn't. There are, IMO, way too many preprocessor gimmicks in use for refcount debugging (at least 3 distinct true/false symbols, but not all 8 combos are supported by the code, etc etc), and no coherent documentation of this stuff -- 'twas too painful to track this one down.
-
Greg Ward authored
-
Greg Ward authored
in a string (gives you something to do with the dictionary returned by 'parse_makefile()'). Pulled the regexes in 'parse_makefile()' out -- they're now globals, as 'expand_makefile_vars()' needs (two of) them. Cosmetic tweaks to 'parse_makefile()'.
-
Greg Ward authored
easier for people porting Makefile.pre.in-based extensions to Distutils. Also loosened argument-checking in Extension constructor to make life easier for 'read_setup_file()'.
-
- 16 Sep, 2000 33 commits
-
-
Tim Peters authored
reverse() didn't work at all due to bad arg check. Fixed that. Added Brad Chapman to ACKS file, as the proud new owner of two implicitly copyrighted lines of Python source code <wink>. Repaired buffer_info's total lack of arg-checking. Replaced memmove by memcpy in reverse() guts, as memmove is often slower and the memory areas are guaranteed disjoint. Replaced poke-and-hope unchecked decl of tmp buffer size by assert-checked larger tmp buffer. Got rid of inconsistent spaces before open paren in docstrings. Added reverse() sanity tests to test_array.py.
-
Barry Warsaw authored
__name__ == '__main__'. Closes SF bug #110844.
-
Fred Drake authored
sheet instead of encoding anything there.
-
Fred Drake authored
-
Guido van Rossum authored
-
Fred Drake authored
-
Greg Ward authored
are completely skipped, rather than being treated as blank lines (and then subject to the 'skip_blanks' flag). This allows us to process old-style Setup files, which rely on hello \\ # boo! there coming out as "hello there".
-
Greg Ward authored
Fixed precendence bug that meant setting skip_blanks to false didn't work under some circumstances.
-
Greg Ward authored
Factored the guts of 'warn()' out to 'gen_error()', and added the 'error()' method (trivial thanks to the refactoring).
-
Greg Ward authored
Dropped the 'collapse_ws' option and replaced it with 'collapse_join' -- it's *much* faster (no 're.sub()') and this is the reason I really added 'collapse_ws', ie. to remove leading whitespace from a line being joined to the previous line.
-
Guido van Rossum authored
This fixes the first half of bug #110611: the immediate exit when ^C is hit when readline and threads are configured. Also added a new module variable, readline.library_version.
-
Guido van Rossum authored
PyOS_setsig(), instead of directly calling signal() or sigaction(). This fixes the second half of bug #110611: the mysterious ignoring of the first ^C when readline isn't used.
-
Guido van Rossum authored
sigaction() (if HAVE_SIGACTION is defined).
-
Guido van Rossum authored
PyOS_setsig().
-
Guido van Rossum authored
(Is there no macro to document a typedef?) Fred, please check my latex!
-
Greg Ward authored
(eg. "bdist_dumb", to generate both ZIP and tar archives in the same run), tell all but the last run to keep temp files -- this just gets rid of the need to pseudo-install the same files multiple times.
-
Greg Ward authored
-
Greg Ward authored
-
Greg Ward authored
-
Greg Ward authored
Run "install" the right way, by calling 'run_command()'.
-
Greg Ward authored
-
Greg Ward authored
real implementation in Distribution.
-
Greg Ward authored
the command's sub-commands as well (off by default). This is essential if we want to be be able to run (eg.) "install" twice in one run, as happens when generating multiple built distributions in one run.
-
Greg Ward authored
families" -- eg. install and its brood, build and its brood, and so forth. Specifically: added the 'sub_commands' class attribute (empty list, sub- classes must override it) and a comment describing it, and the 'get_sub_commands()' method.
-
Greg Ward authored
meant removing 'get_sub_commands()', and moving the 'sub_commands' class attribute to the end and restructuring it to conform to the new regime.
-
Fred Drake authored
This replaces the tilde character with the string ";SPMtilde;", which LaTeX2HTML converts to a tilde on output.
-
Fred Drake authored
document.
-
Fred Drake authored
advertised as the canonical form.
-
Fred Drake authored
-
Fred Drake authored
-
Fred Drake authored
-
Fred Drake authored
-
Tim Peters authored
-