summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Issue #19735: Implement private function ssl._create_stdlib_context() toChristian Heimes2013-11-2311-55/+100
| | | | | create SSLContext objects in Python's stdlib module. It provides a single configuration point and makes use of SSLContext.load_default_certs().
* Issue #16203: Add re.fullmatch() function and regex.fullmatch() method,Serhiy Storchaka2013-11-238-37/+168
| | | | | | which anchor the pattern at both ends of the string to match. Original patch by Matthew Barnett.
* Package _overlapped.Martin v. Löwis2013-11-231-0/+1
|
* Merge headsSerhiy Storchaka2013-11-231-3/+4
|\
| * Fix test_pickletools.py doctest's on 32-bit platforms. I hate doctests.Gregory P. Smith2013-11-231-3/+4
| |
* | Issue #13592: Improved the repr for regular expression pattern objects.Serhiy Storchaka2013-11-235-1/+150
|/ | | | Based on patch by Hugo Lopes Tavares.
* Fix signed / unsigned comparisonAntoine Pitrou2013-11-231-1/+1
|
* test_pickle: speed up test_longAntoine Pitrou2013-11-231-1/+5
|
* Issue #19641: Added the audioop.byteswap() function to convert big-endianSerhiy Storchaka2013-11-2310-78/+80
| | | | samples to little-endian and vice versa.
* gcc doesn't realize that dummy is always initialized by the function callGregory P. Smith2013-11-231-1/+1
| | | | | and warns about potential uninitialized use. Silence that by initializing it to null.
* Issue #17810: Fixed NULL check in _PyObject_GetItemsIter()Christian Heimes2013-11-231-1/+1
| | | | CID 1131948: Logically dead code (DEADCODE)
* mergeChristian Heimes2013-11-2313-13/+45
|\
| * Merge headsSerhiy Storchaka2013-11-232-14/+28
| |\
| * | Issue #15204: Deprecated the 'U' mode in file-like objects.Serhiy Storchaka2013-11-2313-13/+45
| | |
* | | Issue #17810: Add two missing error checks to save_globalChristian Heimes2013-11-231-2/+4
| |/ |/| | | | | CID 1131946: Unchecked return value (CHECKED_RETURN)
* | MergeAntoine Pitrou2013-11-231-1/+1
|\ \
| * | Issue #17810: return -1 on errorChristian Heimes2013-11-231-1/+1
| | |
* | | Fix writing out 64-bit size fields on 32-bit buildsAntoine Pitrou2013-11-232-14/+25
|/ /
* | Issue #17810: Add NULL check to save_frozensetChristian Heimes2013-11-231-0/+3
|/ | | | CID 1131949: Dereference null return value (NULL_RETURNS)
* asyncio: Use socketpair() from test_utils in tests (Saúl Ibarra Corretgé).Guido van Rossum2013-11-231-1/+1
|
* Fix typo.Guido van Rossum2013-11-231-1/+1
|
* #10712: 2to3 has a new "asserts" fixer that replaces deprecated names of ↵Ezio Melotti2013-11-234-0/+120
| | | | unittest methods.
* #19639: update the repr of the match objects in the docs. Patch by Claudiu ↵Ezio Melotti2013-11-233-18/+18
| | | | Popa.
* Fix whitespaceAntoine Pitrou2013-11-231-3/+3
|
* Issue #17810: Implement PEP 3154, pickle protocol 4.Antoine Pitrou2013-11-2312-997/+3123
| | | | Most of the work is by Alexandre.
* #13633: Added a new convert_charrefs keyword arg to HTMLParser that, when ↵Ezio Melotti2013-11-234-36/+134
| | | | True, automatically converts all character references.
* Fixed incorrectly applying a patch for issue19668.Serhiy Storchaka2013-11-232-26/+724
|
* Undo (hopefully) buildbot failuresAntoine Pitrou2013-11-231-1/+1
|\
| * Undo (hopefully) buildbot failuresAntoine Pitrou2013-11-231-1/+1
| |
| * Issue #19308: fix the gdb plugin on gdbs linked with Python 3Antoine Pitrou2013-11-232-53/+70
| |
* | Relax timing even more, hopefully again fixes issue 19579.Guido van Rossum2013-11-231-1/+1
| |
* | Merge headsSerhiy Storchaka2013-11-232-1/+7
|\ \
| * | Isue #19634: test_y_before_1900() is expected to fail on SolarisVictor Stinner2013-11-231-1/+3
| | |
| * | Add news about pdb fix for yield[from].Guido van Rossum2013-11-231-0/+4
| | |
* | | Issue #19668: Added support for the cp1125 encoding.Serhiy Storchaka2013-11-237-31/+44
|/ /
* | Issue #19308: fix the gdb plugin on gdbs linked with Python 3Antoine Pitrou2013-11-232-53/+70
| |
* | Tweak ssl docsAntoine Pitrou2013-11-231-23/+53
| |
* | - Modules/_struct.c (unpackiter_type): Define static.doko@ubuntu.com2013-11-231-1/+1
| |
* | mergeChristian Heimes2013-11-2316-57/+197
|\ \
| * | Issue #19715: try the utime(..., None) approach again, now that it should be ↵Antoine Pitrou2013-11-232-8/+3
| | | | | | | | | | | | more precise under Windows
| * | Issue #19727: os.utime(..., None) is now potentially more precise under Windows.Antoine Pitrou2013-11-232-7/+5
| | |
| * | Issue #19634: time.strftime("%y") now raises a ValueError on Solaris when givenVictor Stinner2013-11-231-1/+1
| | | | | | | | | | | | a year before 1900.
| * | Issue #17201: ZIP64 extensions now are enabled by default.Serhiy Storchaka2013-11-236-15/+22
| | | | | | | | | | | | Patch by William Mallard.
| * | Issue #19716: add a test that Path.touch() doesn't change a file's contents.Antoine Pitrou2013-11-231-0/+7
| | | | | | | | | | | | Patch by Kushal Das.
| * | Merge headsSerhiy Storchaka2013-11-236-34/+156
| |\ \
| | * \ MergeMichael Foord2013-11-231-15/+2
| | |\ \
| | | * | Remove shadowed testMichael Foord2013-09-151-15/+2
| | | | |
| | | * | Adding Wing 5 project fileMichael Foord2013-09-151-0/+18
| | | | |
| | * | | Issue 17457: extend test discovery to support namespace packagesMichael Foord2013-11-234-11/+150
| | | | |
| * | | | Issue #19733: Temporary disable test_image on MacOSX.Serhiy Storchaka2013-11-232-0/+7
| |\ \ \ \ | | | |_|/ | | |/| |