summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Updates CRT installation for Windows installer.Steve Dower2015-03-0111-72/+180
| | | | Bundling versions of the CRT prior to 14.0 is no longer supported.
* Use unsigned division and modulo for item assignment as well.Raymond Hettinger2015-03-011-4/+5
|
* Issue #19980: Improved help() for non-recognized strings. help('') nowSerhiy Storchaka2015-02-284-5/+20
| | | | | shows the help on str. help('help') now shows the help on help(). Original patch by Mark Lawrence.
* mergeAlexander Belopolsky2015-02-281-1/+3
|\
| * Convert one more division to unsigned arithmetic to speed-up deque_item().Raymond Hettinger2015-02-281-1/+3
| |
* | Fixes #23521: Corrected pure python implementation of timedelta division.Alexander Belopolsky2015-02-283-3/+61
|\ \ | |/ |/| | | | | * Eliminated OverflowError from timedelta * float for some floats; * Corrected rounding in timedlta true division.
| * Fixes #23521: Corrected pure python implementation of timedelta division.Alexander Belopolsky2015-02-283-3/+61
| | | | | | | | | | * Eliminated OverflowError from timedelta * float for some floats; * Corrected rounding in timedlta true division.
* | Fixed a test for issue #21619 on Windows.Serhiy Storchaka2015-02-281-1/+1
|\ \ | |/ | | | | On Windows an OSError with errno=EINVAL is raised.
| * Fixed a test for issue #21619 on Windows.Serhiy Storchaka2015-02-281-1/+1
| | | | | | | | On Windows an OSError with errno=EINVAL is raised.
* | Issue #21619: Popen objects no longer leave a zombie after exit in the withSerhiy Storchaka2015-02-283-4/+24
|\ \ | |/ | | | | statement if the pipe was broken. Patch by Martin Panter.
| * Issue #21619: Popen objects no longer leave a zombie after exit in the withSerhiy Storchaka2015-02-283-4/+24
| | | | | | | | statement if the pipe was broken. Patch by Martin Panter.
* | Line missed in last checkinRaymond Hettinger2015-02-281-1/+0
| |
* | Since the index is always non-negative, use faster unsigned division and modulo.Raymond Hettinger2015-02-271-3/+5
| |
* | Merge with 3.4 for porting HOWTO tweaksBrett Cannon2015-02-271-2/+3
|\ \ | |/
| * Fix the clarification as to why division cannot be ported automaticallyBrett Cannon2015-02-271-2/+3
| |
* | Merge from 3.4.Larry Hastings2015-02-271-3/+1
|\ \ | |/
| * Fix minor errors in Misc/NEWS. (Thanks for the report, Florian Bruhin!)Larry Hastings2015-02-271-3/+1
| |
* | Issue #22834: Drop a redundant comment and use errno instead of anBrett Cannon2015-02-271-2/+2
| | | | | | | | | | | | integer. Thanks to Serhiy Storchaka and Martin Panter for the suggestions.
* | Merge 3.4 (asyncio)Victor Stinner2015-02-271-6/+0
|\ \ | |/
| * Issue #23537: Remove 2 unused private methods of asyncio.BaseSubprocessTransportVictor Stinner2015-02-271-6/+0
| | | | | | | | Methods only raise NotImplementedError and are never used.
* | Merge 3.4 (httplib)Victor Stinner2015-02-272-0/+4
|\ \ | |/
| * Issue #23526: Fix ResourceWarning in test_httplib. Patch written by Alex Shkop.Victor Stinner2015-02-272-0/+4
| |
* | Merge with 3.4Zachary Ware2015-02-271-2/+2
|\ \ | |/
| * Fix copy/paste error in bytes.isupper() doc.Zachary Ware2015-02-271-2/+2
| | | | | | | | Reported by Jon Colburn on docs@.
* | Bump the blocksize up from 62 to 64 to speed up the modulo calculation.Raymond Hettinger2015-02-272-7/+4
| | | | | | | | | | | | | | | | | | Remove the old comment suggesting that it was desireable to have blocksize+2 as a multiple of the cache line length. That would have made sense only if the block structure start point was always aligned to a cache line boundary. However, the memory allocations are 16 byte aligned, so we don't really have control over whether the struct spills across cache line boundaries.
* | unix newlinesBenjamin Peterson2015-02-271-146/+146
| |
* | merge 3.4Benjamin Peterson2015-02-271-0/+1
|\ \ | |/
| * remove duplicate 3.4.3 tagsBenjamin Peterson2015-02-271-2/+0
| |
| * Merge 3.4.3 release engineering changes back into 3.4.Larry Hastings2015-02-2689-1170/+1275
| |\
| * | Post-release changes for 3.4.3.Larry Hastings2015-02-262-1/+13
| | |
| * | Added tag v3.4.3 for changeset b4cbecbc0781Larry Hastings2015-02-251-0/+2
| | |
| * | Checking in this change LOCAL ONLY NO UPLOAD ANYWHEREv3.4.3Larry Hastings2015-02-251-1/+1
| | |
| * | Added tag v3.4.3 for changeset 9b73f1c3e601Larry Hastings2015-02-231-0/+1
| | |
| * | Release bump for 3.4.3 final.Larry Hastings2015-02-236-21/+9
| | |
| * | Doc updates for 3.4.3 final.Larry Hastings2015-02-231-1/+1
| | |
* | | Issue #23465: Implement PEP 486 - Make the Python Launcher aware of virtual ↵Steve Dower2015-02-264-4/+73
| | | | | | | | | | | | environments (patch by Paul Moore)
* | | Silenced minor GCC warnings.Serhiy Storchaka2015-02-264-3/+18
| | |
* | | Issue #15955: Add an option to limit the output size in bz2.decompress().Antoine Pitrou2015-02-265-78/+360
| | | | | | | | | | | | Patch by Nikolaus Rath.
* | | Merge 3.4 (asyncio doc)Victor Stinner2015-02-261-3/+11
|\ \ \ | | |/ | |/|
| * | asyncio doc: lock classes are not thread safeVictor Stinner2015-02-261-3/+11
| | |
* | | Back-out wcstok deprecation suppression and updates calls to use wcstok_s.Steve Dower2015-02-263-7/+8
| | |
* | | Adds _CRT_NON_CONFORMING_WCSTOK to retain two-parameter wcstok.Steve Dower2015-02-261-1/+1
| | |
* | | merge 3.4Benjamin Peterson2015-02-251-1/+0
|\ \ \ | |/ /
| * | remove unused importBenjamin Peterson2015-02-251-1/+0
| | |
* | | Issue #23511: Port email-simple.py to Python 3.Berker Peksag2015-02-254-10/+10
|\ \ \ | |/ / | | | | | | | | | | | | Also, update email examples to use the context manager version of open(). Patch by Baptiste Mispelon.
| * | Issue #23511: Port email-simple.py to Python 3.Berker Peksag2015-02-254-10/+10
| | | | | | | | | | | | | | | | | | Also, update email examples to use the context manager version of open(). Patch by Baptiste Mispelon.
* | | merge 3.4 (#23515)Benjamin Peterson2015-02-251-1/+2
|\ \ \ | |/ /
| * | fix merge_collapse to actually maintain the invariant it purports to (closes ↵Benjamin Peterson2015-02-251-1/+2
| | | | | | | | | | | | | | | | | | | | | | | | #23515) See de Gouw, Stijn and Rot, Jurriaan and de Boer, Frank S and Bubel, Richard and Hähnle, Reiner "OpenJDK’s java.utils.Collection.sort() is broken: The good, the bad and the worst case"
* | | Merge 3.4 (asyncio doc)Victor Stinner2015-02-258-166/+201
|\ \ \ | |/ /
| * | asyncio: add a note about (non) thread safety in each classVictor Stinner2015-02-256-0/+22
| | |