- 06 Sep, 2013 5 commits
-
-
Ned Deily authored
when building _tkinter. configure has two new options; if used, both must be specified: ./configure \ --with-tcltk-includes="-I/opt/local/include" \ --with-tcltk-libs="-L/opt/local/lib -ltcl8.5 -ltk8.5" In addition, the options can be overridden with make: make \ TCLTK_INCLUDES="-I/opt/local/include" \ TCLTK_LIBS="-L/opt/local/lib -ltcl8.6 -ltk8.6"
-
Senthil Kumaran authored
Improve urlencode docstring. Patch by Brian Brazil. Closes issue #15350
-
Senthil Kumaran authored
-
Tim Peters authored
Issue #18942: sys._debugmallocstats() output was damaged on Windows. _PyDebugAllocatorStats() called PyOS_snprintf() with a %zd format code, but MS doesn't support that code. Interpolated PY_FORMAT_SIZE_T in place of the "z".
-
Tim Peters authored
_PyDebugAllocatorStats() called PyOS_snprintf() with a %zd format code, but MS doesn't support that code. Interpolated PY_FORMAT_SIZE_T in place of the "z".
-
- 05 Sep, 2013 15 commits
-
-
Vinay Sajip authored
-
Vinay Sajip authored
-
Charles-François Natali authored
-
Serhiy Storchaka authored
the _sre moduel.
-
Serhiy Storchaka authored
the _sre moduel.
-
Serhiy Storchaka authored
their version strings to stdout, and not to sderr.
-
Serhiy Storchaka authored
-
Serhiy Storchaka authored
-
Serhiy Storchaka authored
-
Serhiy Storchaka authored
when input list contains duplicates.
-
Serhiy Storchaka authored
when input list contains duplicates.
-
Christian Heimes authored
-
Christian Heimes authored
Issue #18709: GCC 4.6 complains that 'v' may be used uninitialized in GEN_EMAIL/GEN_URI/GEN_DNS case
-
Christian Heimes authored
Issue #18709: GCC 4.6 complains that 'v' may be used uninitialized in GEN_EMAIL/GEN_URI/GEN_DNS case
-
Serhiy Storchaka authored
patches by Claudiu Popa and R. David Murray.
-
- 04 Sep, 2013 14 commits
-
-
Victor Stinner authored
don't cast 64-bit pointer to long (32 bits).
-
Victor Stinner authored
64-bit pointer to long (32 bits).
-
Antoine Pitrou authored
Issue #18876: The FileIO.mode attribute now better reflects the actual mode under which the file was opened. Patch by Erik Bray.
-
Antoine Pitrou authored
Issue #18876: The FileIO.mode attribute now better reflects the actual mode under which the file was opened. Patch by Erik Bray.
-
Victor Stinner authored
-
Victor Stinner authored
-
Victor Stinner authored
-
Victor Stinner authored
-
Charles-François Natali authored
-
Serhiy Storchaka authored
-
Andrew Svetlov authored
-
Andrew Svetlov authored
-
Meador Inge authored
-
Meador Inge authored
-
- 03 Sep, 2013 6 commits
-
-
Meador Inge authored
-
Meador Inge authored
This commit fixes a regression that sneaked into Python 3.3 where importlib was not respecting -E when checking for the PYTHONCASEOK environment variable.
-
Serhiy Storchaka authored
a plain tuple. Patch by Claudiu Popa.
-
Meador Inge authored
This commit fixes a regression that sneaked into Python 3.3 where importlib was not respecting -E when checking for the PYTHONCASEOK environment variable.
-
Serhiy Storchaka authored
Patch by Claudiu Popa.
-
Tim Peters authored
cwr_next(): move invariants out of loops. This simplifies and clarifies the code, and gives a small speedup.
-