| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Version number bump for Python 3.4.0a2.v3.4.0a2 | Larry Hastings | 2013-09-07 | 5 | -6/+6 |
| | | |||||
| * | Update pydoc topic index for Python 3.4.0a2. | Larry Hastings | 2013-09-07 | 1 | -2/+2 |
| | | |||||
| * | Close #18954: Fix some typo in fileutils.c comments | Victor Stinner | 2013-09-07 | 1 | -3/+3 |
| | | | | | Patch written by Vajrasky Kok. | ||||
| * | Added Elazar to Misc/ACKS. | Ethan Furman | 2013-09-07 | 1 | -0/+1 |
| | | |||||
| * | Close #18908: Keep Enum docs in their own section. Patch by Elazar Gershuni. | Ethan Furman | 2013-09-07 | 1 | -58/+67 |
| | | |||||
| * | Issue #18458: Prevent crashes with newer versions of libedit. Its readline | Ned Deily | 2013-09-06 | 2 | -12/+25 |
| | | | | | | emulation has changed from 0-based indexing to 1-based like gnu readline. Original patch by Ronald Oussoren. | ||||
| * | Merge 3.3 into default. | Tim Peters | 2013-09-06 | 1 | -1/+1 |
| |\ | | | | | | | | | | | | | Issue 18944: fix a 1-character typo in test_set.py. The error caused test_inline_methods() to test much less than intended. Caught (& fixed) by Armin Rigo. | ||||
| | * | Issue 18944: fix a 1-character typo in test_set.py. | Tim Peters | 2013-09-06 | 1 | -1/+1 |
| | | | | | | | | | | | The error caused test_inline_methods() to test much less than intended. Caught (& fixed) by Armin Rigo. | ||||
| * | | Remove old-school inheritance | Antoine Pitrou | 2013-09-06 | 1 | -1/+1 |
| | | | |||||
| * | | Issue #18934: Relax test_multiprocessing.test_invalid_handles a bit: we just | Charles-François Natali | 2013-09-06 | 1 | -1/+4 |
| | | | | | | | | | want to check that Connection.poll() doesn't crash. | ||||
| * | | Issue #18623: Factor out the _SuppressCoreFiles context manager into ↵ | Antoine Pitrou | 2013-09-06 | 4 | -46/+50 |
| | | | | | | | | | | | | | test.support. Patch by Valerie Lambert. | ||||
| * | | #18852: Handle readline.__doc__ being None in site.py readline activation. | R David Murray | 2013-09-06 | 2 | -2/+6 |
| | | | | | | | | | Patch by Berker Peksag. | ||||
| * | | Close #18924: Block naive attempts to change an Enum member. | Ethan Furman | 2013-09-06 | 2 | -0/+18 |
| | | | |||||
| * | | Update whatsnew/3.4 wrt. --version going to stdout. #18338, #18920, #18922 | Eli Bendersky | 2013-09-06 | 1 | -0/+7 |
| | | | |||||
| * | | Issue #18920: argparse's default version action (for -v, --version) should | Eli Bendersky | 2013-09-06 | 3 | -3/+7 |
| | | | | | | | | | | | | | output to stdout, matching the 'python -v' Reported by Wolfgang Maier | ||||
| * | | Issue #18849: Fixed a Windows-specific tempfile bug where collision with an | Eli Bendersky | 2013-09-06 | 4 | -0/+38 |
| |\ \ | |/ | | | | | | | existing directory caused mkstemp and related APIs to fail instead of retrying. Report and fix by Vlad Shcherbina. | ||||
| | * | Issue #18849: Fixed a Windows-specific tempfile bug where collision with an | Eli Bendersky | 2013-09-06 | 4 | -0/+38 |
| | | | | | | | | | | | existing directory caused mkstemp and related APIs to fail instead of retrying. Report and fix by Vlad Shcherbina. | ||||
| * | | Closes #18941: Merged fix from 3.3. | Vinay Sajip | 2013-09-06 | 2 | -4/+7 |
| |\ \ | |/ | |||||
| | * | Issue #18941: Respected delay when doing rollover. | Vinay Sajip | 2013-09-06 | 2 | -4/+7 |
| | | | |||||
| * | | Closes #18940: Merged fix from 3.3. | Vinay Sajip | 2013-09-06 | 1 | -1/+3 |
| |\ \ | |/ | |||||
| | * | Issue #18940: Handled low-volume logging when delay is True. | Vinay Sajip | 2013-09-06 | 1 | -1/+3 |
| | | | |||||
| * | | Closes #18939: Merged documentation update from 3.3. | Vinay Sajip | 2013-09-06 | 1 | -0/+14 |
| |\ \ | |/ | |||||
| | * | Issue #18939: Updated venv documentation with some clarifications. | Vinay Sajip | 2013-09-06 | 1 | -0/+14 |
| | | | |||||
| * | | Issue #15663: Tcl/Tk 8.5.14 is now included with the OS X 10.6+ | Ned Deily | 2013-09-06 | 5 | -27/+155 |
| | | | | | | | | | | | | | | | 64-bit/32-bit installer for 10.6+. It is no longer necessary to install a third-party version of Tcl/Tk 8.5 to work around the problems in the Apple-supplied Tcl/Tk 8.5 shipped in OS X 10.6 and later releases. | ||||
| * | | Issue #1584: Provide options to override default search paths for Tcl and Tk | Ned Deily | 2013-09-06 | 5 | -1/+129 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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" | ||||
| * | | merge from 3.3 | Senthil Kumaran | 2013-09-06 | 1 | -4/+4 |
| |\ \ | |/ | | | | | | | Improve urlencode docstring. Patch by Brian Brazil. Closes issue #15350 | ||||
| | * | Improve urlencode docstring. Patch by Brian Brazil. | Senthil Kumaran | 2013-09-06 | 1 | -4/+4 |
| | | | |||||
| * | | Nerge 3.3 into default. | Tim Peters | 2013-09-06 | 2 | -1/+3 |
| |\ \ | |/ | | | | | | | | | | | | | 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". | ||||
| | * | Issue #18942: sys._debugmallocstats() output was damaged on Windows. | Tim Peters | 2013-09-06 | 2 | -1/+3 |
| | | | | | | | | | | | | | _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". | ||||
| * | | Closes #18933: Merged update from 3.3. | Vinay Sajip | 2013-09-05 | 3 | -0/+12 |
| |\ \ | |/ | |||||
| | * | Issue #18933: Added links to source code. | Vinay Sajip | 2013-09-05 | 3 | -0/+12 |
| | | | |||||
| * | | Issue #18934: multiprocessing: use selectors module. | Charles-François Natali | 2013-09-05 | 2 | -39/+26 |
| | | | |||||
| * | | Issue #18672: Fixed format specifiers for Py_ssize_t in debugging output in | Serhiy Storchaka | 2013-09-05 | 2 | -14/+26 |
| |\ \ | |/ | | | | | the _sre moduel. | ||||
| | * | Issue #18672: Fixed format specifiers for Py_ssize_t in debugging output in | Serhiy Storchaka | 2013-09-05 | 2 | -14/+26 |
| | | | | | | | | | the _sre moduel. | ||||
| * | | Issue #18922: Now The Lib/smtpd.py and Tools/i18n/msgfmt.py scripts write | Serhiy Storchaka | 2013-09-05 | 3 | -2/+8 |
| | | | | | | | | | their version strings to stdout, and not to sderr. | ||||
| * | | Null merge | Serhiy Storchaka | 2013-09-05 | 0 | -0/+0 |
| |\ \ | |/ | |||||
| | * | Merge heads | Serhiy Storchaka | 2013-09-05 | 1 | -1/+1 |
| | |\ | |||||
| * | \ | Merge heads | Serhiy Storchaka | 2013-09-05 | 1 | -1/+1 |
| |\ \ \ | |||||
| | * \ \ | merge | Christian Heimes | 2013-09-05 | 4 | -15/+72 |
| | |\ \ \ | |||||
| | * \ \ \ | Issue #18709: GCC 4.6 complains that 'v' may be used uninitialized in ↵ | Christian Heimes | 2013-09-05 | 1 | -1/+1 |
| | |\ \ \ \ | | | |_|/ | | |/| | | | | | | | GEN_EMAIL/GEN_URI/GEN_DNS case | ||||
| | | * | | | Issue #18709: GCC 4.6 complains that 'v' may be used uninitialized in ↵ | Christian Heimes | 2013-09-05 | 1 | -1/+1 |
| | | | | | | | | | | | | | | | | | | | | | GEN_EMAIL/GEN_URI/GEN_DNS case | ||||
| * | | | | | Issue #18830: inspect.getclasstree() no more produces duplicated entries even | Serhiy Storchaka | 2013-09-05 | 4 | -3/+26 |
| |\ \ \ \ \ | |_|_|/ / |/| | | / | | |_|/ | |/| | | when input list contains duplicates. | ||||
| | * | | | Issue #18830: inspect.getclasstree() no more produces duplicated entries even | Serhiy Storchaka | 2013-09-05 | 4 | -3/+26 |
| | | |/ | |/| | | | | | | | when input list contains duplicates. | ||||
| * | | | Issue #18878: sunau.open now supports the context manager protocol. Based on | Serhiy Storchaka | 2013-09-05 | 4 | -15/+72 |
| | |/ |/| | | | | | patches by Claudiu Popa and R. David Murray. | ||||
| * | | (Merge 3.3) Issue #18909: Fix _tkinter.tkapp.interpaddr() on Windows 64-bit, | Victor Stinner | 2013-09-04 | 2 | -1/+4 |
| |\ \ | |/ | | | | | don't cast 64-bit pointer to long (32 bits). | ||||
| | * | Issue #18909: Fix _tkinter.tkapp.interpaddr() on Windows 64-bit, don't cast | Victor Stinner | 2013-09-04 | 2 | -1/+4 |
| | | | | | | | | | 64-bit pointer to long (32 bits). | ||||
| * | | Issue #18876: The FileIO.mode attribute now better reflects the actual mode ↵ | Antoine Pitrou | 2013-09-04 | 3 | -10/+32 |
| |\ \ | |/ | | | | | | | | | under which the file was opened. Patch by Erik Bray. | ||||
| | * | Issue #18876: The FileIO.mode attribute now better reflects the actual mode ↵ | Antoine Pitrou | 2013-09-04 | 3 | -11/+32 |
| | | | | | | | | | | | | | under which the file was opened. Patch by Erik Bray. | ||||
| * | | Issue #16853: Mention the new selectors module in the select module | Victor Stinner | 2013-09-04 | 1 | -0/+8 |
| | | | |||||
| * | | oops, revert test commit | Victor Stinner | 2013-09-04 | 1 | -1/+0 |
| | | | |||||
