summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Issue13674 Correct crash with strftime %y format under WindowsTim Golden2013-11-122-0/+33
|\
| * Issue13674 Correct crash with strftime %y format under WindowsTim Golden2013-11-122-1/+32
| |
* | Issue #19440: Clean up test_capiZachary Ware2013-11-122-14/+12
|\ \ | |/
| * Issue #19440: Clean up test_capiZachary Ware2013-11-122-13/+11
| |
* | Null mergeZachary Ware2013-11-120-0/+0
|\ \ | |/
| * Correct a merge error in Misc/NEWSZachary Ware2013-11-121-1/+1
| |
* | #15422: remove NEWS item for a change that was later revertedAndrew Kuchling2013-11-111-3/+0
| |
* | Closes #6683: add a test that exercises multiple authentication.Andrew Kuchling2013-11-111-0/+9
| | | | | | | | | | The SMTP server advertises four different authentication methods, and the code will try CRAM-MD5 first, which will fail, but LOGIN succeeds.
* | Remove outdated commentTim Golden2013-11-111-1/+0
|\ \ | |/
| * Remove outdated commentTim Golden2013-11-111-1/+0
| |
* | Close #19406: Initial implementation of ensurepipNick Coghlan2013-11-1116-2/+488
| | | | | | | | Patch by Donald Stufft and Nick Coghlan
* | Issue #8799: Reduce timing sensitivity of condition test by explicitlyKristjan Valur Jonsson2013-11-111-0/+15
| | | | | | | | delaying the main thread so that it doesn't race ahead of the workers.
* | Fixed compile error on Windows caused by arithmetic with void * pointersSerhiy Storchaka2013-11-111-3/+3
| | | | | | | | (issue #16685).
* | #1097797: add the original mapping fileAndrew Kuchling2013-11-111-0/+258
| |
* | Fix some PEP8-formatting problems in the generated codeAndrew Kuchling2013-11-111-9/+9
| |
* | Fix failing test incorrectly merged in b1244046f37aJason R. Coombs2013-11-111-1/+1
| |
* | Merge with 3.3 for Issue #19544 and Issue #6286. Merge is untested. I was ↵Jason R. Coombs2013-11-103-71/+62
|\ \ | |/ | | | | unable to test due to bab0cbf86835.
| * Issue #19544 and Issue #6286: Restore use of urllib over http allowing use ↵Jason R. Coombs2013-11-103-68/+59
| | | | | | | | of http_proxy for Distutils upload command, a feature accidentally lost in the rollback of distutils2.
* | Merge with 3.3 for Issue #19544 and Issue #7457Jason R. Coombs2013-11-104-18/+147
|\ \ | |/
| * Issue 19544 and Issue #7457: Restore the read_pkg_file method to ↵Jason R. Coombs2013-11-104-18/+147
| | | | | | | | distutils.dist.DistributionMetadata accidentally removed in the undo of distutils2.
* | Issue #16685: Added support for any bytes-like objects in the audioop module.Serhiy Storchaka2013-11-104-294/+485
| | | | | | | | Removed support for strings.
* | Update Misc/NEWS for Issue #7171Jason R. Coombs2013-11-101-0/+3
| |
* | Merge headsSerhiy Storchaka2013-11-103-4/+128
|\ \
| * \ MergeJason R. Coombs2013-11-104-3/+315
| |\ \
| * | | Normalize whitespaceJason R. Coombs2013-11-101-2/+2
| | | |
| * | | Issue #7171: Update syntax to replace MAX in favor of Py_MAX (matching ↵Jason R. Coombs2013-11-101-1/+5
| | | | | | | | | | | | | | | | implementation for Unix).
| * | | Issue #7171: Add Windows implementation of ``inet_ntop`` and ``inet_pton`` ↵Atsuo Ishimoto2012-07-163-4/+124
| | | | | | | | | | | | | | | | to socket module.
* | | | Issue #19261: Added support for writing 24-bit samples in the sunau module.Serhiy Storchaka2013-11-105-1/+37
| |/ / |/| |
* | | Add news entry for #1097797; whitespace cleanupAndrew Kuchling2013-11-101-1/+4
| | |
* | | #1097797: Add CP273 codec, and exercise it in the test suiteAndrew Kuchling2013-11-102-2/+309
| | |
* | | Ignore two constructed directories in Tools/unicodeAndrew Kuchling2013-11-101-0/+2
|/ /
* | Issue #1575020: Fixed support of 24-bit wave files on big-endian platforms.Serhiy Storchaka2013-11-093-5/+14
|\ \ | |/
| * Issue #1575020: Fixed support of 24-bit wave files on big-endian platforms.Serhiy Storchaka2013-11-093-11/+15
| |
* | Fix Tkinter tests on Tk 8.5 with patchlevel < 8.5.11 (issue #19085).Serhiy Storchaka2013-11-093-23/+31
|\ \ | |/
| * Fix Tkinter tests on Tk 8.5 with patchlevel < 8.5.11 (issue #19085).Serhiy Storchaka2013-11-093-23/+31
| |
* | Null merge.Stefan Krah2013-11-080-0/+0
|\ \ | |/
| * Valgrind: suppress false positive in _PyOS_GetOpt (getopt.c:84) (Invalid readStefan Krah2013-11-081-0/+9
| | | | | | | | of size 8: wcscmp (wcscmp.S:464))
| * Move PyErr_NoMemory() closer to the failure.Stefan Krah2013-11-081-1/+1
| |
| * Change style to match the surrounding code (no early returns).Stefan Krah2013-11-081-4/+3
| |
| * Issue #19437: Fix dec_format() of the _decimal module, handle dec_strdup()Victor Stinner2013-10-291-0/+1
| | | | | | | | failure (memory allocation failure): raise a MemoryError exception
| * Issue #19437: Fix convert_op_cmp() of decimal.Decimal rich comparator, handleVictor Stinner2013-10-291-10/+17
| | | | | | | | PyObject_IsInstance() failure
* | Merge.Stefan Krah2013-11-0822-445/+349
|\ \
| * | remove dead importBrett Cannon2013-11-081-1/+0
| | |
| * | Issue #16803: test.test_importlib.source now tests frozen and source codeBrett Cannon2013-11-085-74/+91
| | |
| * | Issue #18923: Update subprocess to use the new selectors module.Charles-François Natali2013-11-082-173/+75
| | |
| * | Simplify test.test_importlib.__main__Brett Cannon2013-11-081-10/+1
| | |
| * | Issue #16803: test.test_importlib.import_ now tests frozen and source codeBrett Cannon2013-11-0811-154/+146
| | |
| * | Issue #16803: test.test_importlib.frozen now runs both frozen and source codeBrett Cannon2013-11-082-31/+33
| | |
| * | Issue #19512, #19526: Exclude the new _PyDict_DelItemId() function from theVictor Stinner2013-11-081-2/+3
| | | | | | | | | | | | stable ABI
* | | Valgrind: suppress false positive in _PyOS_GetOpt (getopt.c:84) (Invalid readStefan Krah2013-11-081-0/+9
| | | | | | | | | | | | of size 8: wcscmp (wcscmp.S:464))