summaryrefslogtreecommitdiffstats
path: root/Lib
Commit message (Collapse)AuthorAgeFilesLines
* Use bigmemtest decorator for test of issue #16335.Serhiy Storchaka2013-01-211-11/+10
|\
| * Use bigmemtest decorator for test of issue #16335.Serhiy Storchaka2013-01-211-11/+10
| |\
| | * Add bigmemtest decorator to test of issue #16335.Serhiy Storchaka2013-01-211-11/+10
| | |
* | | Issue #16993: shutil.which() now preserves the case of the path and extensionSerhiy Storchaka2013-01-212-8/+11
|\ \ \ | |/ / | | | | | | on Windows.
| * | Issue #16993: shutil.which() now preserves the case of the path and extensionSerhiy Storchaka2013-01-212-8/+11
| | | | | | | | | | | | on Windows.
* | | Fix memory error in test_ucn.Serhiy Storchaka2013-01-211-5/+6
|\ \ \ | |/ / | | | | | | | | | unicode-escape decoder requires memory for result corresponding to input size. Fixes test for issue #16335.
| * | Fix memory error in test_ucn.Serhiy Storchaka2013-01-211-5/+6
| |\ \ | | |/ | | | | | | | | | unicode-escape decoder requires memory for result corresponding to input size. Fixes test for issue #16335.
| | * Fix memory error in test_ucn.Serhiy Storchaka2013-01-211-5/+6
| | | | | | | | | | | | | | | unicode-escape decoder requires memory for result corresponding to input size. Fixes test for issue #16335.
* | | Issue #16335: Fix integer overflow in unicode-escape decoder.Serhiy Storchaka2013-01-211-0/+16
|\ \ \ | |/ /
| * | Issue #16335: Fix integer overflow in unicode-escape decoder.Serhiy Storchaka2013-01-211-0/+16
| |\ \ | | |/
| | * Issue #16335: Fix integer overflow in unicode-escape decoder.Serhiy Storchaka2013-01-211-0/+16
| | |
| * | Fix docstring typo in concurrent.futures.FutureEli Bendersky2013-01-171-1/+1
| | |
| * | Issue #15989: Fix several occurrences of integer overflowSerhiy Storchaka2013-01-198-4/+91
| |\ \ | | |/ | | | | | | | | | | | | when result of PyLong_AsLong() narrowed to int without checks. This is a backport of changesets 13e2e44db99d and 525407d89277.
| | * Issue #15989: Fix several occurrences of integer overflowSerhiy Storchaka2013-01-197-4/+87
| | | | | | | | | | | | | | | | | | when result of PyLong_AsLong() narrowed to int without checks. This is a backport of changesets 13e2e44db99d and 525407d89277.
* | | merge 3.3Benjamin Peterson2013-01-181-2/+9
|\ \ \ | |/ /
| * | check windows fd validity (closes #16992)Benjamin Peterson2013-01-181-2/+9
| | |
* | | Merge 3.3.Stefan Krah2013-01-171-1/+2
|\ \ \ | |/ /
| * | Issue #11870: Skip test_3_join_in_forked_from_thread() on HP-UX.Stefan Krah2013-01-171-1/+1
| | |
* | | Remove outdated statementAntoine Pitrou2013-01-171-1/+0
|\ \ \ | |/ /
| * | Remove outdated statementAntoine Pitrou2013-01-171-1/+0
| |\ \ | | |/
| | * Remove outdated statementAntoine Pitrou2013-01-171-1/+0
| | |
* | | Fix docstring typo in concurrent.futures.FutureEli Bendersky2013-01-171-1/+1
| | |
* | | Merge 3.3.Stefan Krah2013-01-171-3/+6
|\ \ \ | |/ /
| * | Issue #14110: Fix test failures on FreeBSD if the user is in the wheel group.Stefan Krah2013-01-171-3/+6
| | |
* | | merge with 3.3Frank Wierzbicki2013-01-161-4/+1
|\ \ \ | |/ /
| * | Use unittest.main() in 3.3 and greaterFrank Wierzbicki2013-01-161-4/+1
| | |
* | | #16886: merge with 3.3Frank Wierzbicki2013-01-161-40/+77
|\ \ \ | |/ /
| * | #16886: merge with 3.2Frank Wierzbicki2013-01-161-40/+77
| |\ \ | | |/
| | * Closed #16886: test_dictcomps no longer depends on dict orderFrank Wierzbicki2013-01-161-40/+77
| | |
* | | Merge 3.3.Stefan Krah2013-01-161-65/+54
|\ \ \ | |/ /
| * | Issue #16422: Use strings for rounding mode constants for better readabilityStefan Krah2013-01-161-65/+54
| | | | | | | | | | | | and pickling compatibility.
* | | Issue #9501: Merged fix from 3.3.Vinay Sajip2013-01-151-1/+2
|\ \ \ | |/ /
| * | Issue #9501: Merged fix from 3.2.Vinay Sajip2013-01-151-1/+2
| |\ \ | | |/
| | * Issue #9501: Improved shutdown handling to deal with module attributes ↵Vinay Sajip2013-01-151-1/+2
| | | | | | | | | | | | correctly.
* | | Issue #15861: tkinter now correctly works with lists and tuples containingSerhiy Storchaka2013-01-154-81/+120
|\ \ \ | |/ / | | | | | | strings with whitespaces, backslashes or unbalanced braces.
| * | Issue #15861: tkinter now correctly works with lists and tuples containingSerhiy Storchaka2013-01-154-81/+120
| |\ \ | | |/ | | | | | | strings with whitespaces, backslashes or unbalanced braces.
| | * Issue #15861: tkinter now correctly works with lists and tuples containingSerhiy Storchaka2013-01-154-81/+120
| | | | | | | | | | | | strings with whitespaces, backslashes or unbalanced braces.
| | * Merge headsSerhiy Storchaka2013-01-151-23/+0
| | |\
| | | * Issue #10527: Remove dead codeRichard Oudkerk2013-01-151-23/+0
| | | |
* | | | Issue #14850: Now a chamap decoder treates U+FFFE as "undefined mapping"Serhiy Storchaka2013-01-151-0/+46
|\ \ \ \ | |/ / / | | | | | | | | in any mapping, not only in an unicode string.
| * | | Issue #14850: Now a chamap decoder treates U+FFFE as "undefined mapping"Serhiy Storchaka2013-01-151-0/+46
| |\ \ \ | | |/ / | | | | | | | | in any mapping, not only in an unicode string.
| | * | Issue #14850: Now a chamap decoder treates U+FFFE as "undefined mapping"Serhiy Storchaka2013-01-151-0/+46
| | |/ | | | | | | | | | in any mapping, not only in an unicode string.
* | | Fix test_socket broken in previous commit (changeset 13e2e44db99d).Serhiy Storchaka2013-01-151-5/+7
| | | | | | | | | | | | Added new checks for socket.setblocking().
* | | Issue #15989: Fix several occurrences of integer overflowSerhiy Storchaka2013-01-148-3/+88
| | | | | | | | | | | | when result of PyLong_AsLong() narrowed to int without checks.
* | | Issue #9720: zipfile now writes correct local headers for files larger than ↵Serhiy Storchaka2013-01-141-14/+32
|\ \ \ | |/ / | | | | | | 4 GiB.
| * | Issue #9720: zipfile now writes correct local headers for files larger than ↵Serhiy Storchaka2013-01-141-15/+32
| |\ \ | | |/ | | | | | | 4 GiB.
| | * Issue #9720: zipfile now writes correct local headers for files larger than ↵Serhiy Storchaka2013-01-141-15/+32
| | | | | | | | | | | | 4 GiB.
| * | fix for previous commit related to issue 10527 which didn't have the ↵Giampaolo Rodola'2013-01-142-24/+26
| | | | | | | | | | | | intended effect as per http://bugs.python.org/issue10527#msg179895
* | | Issue #5066: Update IDLE docsAndrew Svetlov2013-01-142-246/+314
| | | | | | | | | | | | Patch by Todd Rovito
* | | fix for previous commit related to issue 10527 which didn't have the ↵Giampaolo Rodola'2013-01-142-24/+26
| | | | | | | | | | | | intended effect as per http://bugs.python.org/issue10527#msg179895