summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Issue #23450: Fixed possible integer overflows.Serhiy Storchaka2015-02-168-50/+64
|
* Issue #23446: Use PyMem_New instead of PyMem_Malloc to avoid possible integerSerhiy Storchaka2015-02-1615-52/+50
|\ | | | | | | overflows. Added few missed PyErr_NoMemory().
| * Issue #23446: Use PyMem_New instead of PyMem_Malloc to avoid possible integerSerhiy Storchaka2015-02-1615-52/+50
| | | | | | | | overflows. Added few missed PyErr_NoMemory().
* | Fixed few compiler warnings.Serhiy Storchaka2015-02-165-10/+9
| |
* | Issue #20069: Fixed test_os on Solaris: error message is platform depended.Serhiy Storchaka2015-02-161-1/+1
| |
* | Issue #17753: effective_ids unavailable on Windows.Berker Peksag2015-02-161-1/+3
|\ \ | |/
| * Issue #17753: effective_ids unavailable on Windows.Berker Peksag2015-02-161-1/+3
| |
* | Fix typo in os.supports_effective_ids documentation.Berker Peksag2015-02-161-1/+2
|\ \ | |/
| * Fix typo in os.supports_effective_ids documentation.Berker Peksag2015-02-161-1/+2
| |
* | Issue #22885: Fixed arbitrary code execution vulnerability in the dbm.dumbSerhiy Storchaka2015-02-153-1/+14
|\ \ | |/ | | | | module. Original patch by Claudiu Popa.
| * Issue #22885: Fixed arbitrary code execution vulnerability in the dbm.dumbSerhiy Storchaka2015-02-153-1/+14
| | | | | | | | module. Original patch by Claudiu Popa.
* | Issue #23239: ssl.match_hostname() now supports matching of IP addresses.Antoine Pitrou2015-02-154-5/+55
| |
* | Issue #23146: Fix mishandling of absolute Windows paths with forward slashes ↵Antoine Pitrou2015-02-153-16/+27
|\ \ | |/ | | | | | | | | in pathlib. Detected and fixed by Serhiy.
| * Issue #23146: Fix mishandling of absolute Windows paths with forward slashes ↵Antoine Pitrou2015-02-153-16/+27
| | | | | | | | | | | | in pathlib. Detected and fixed by Serhiy.
* | Issue #19681: Test the repr of partial with more than one keyword argument.Serhiy Storchaka2015-02-151-7/+9
|\ \ | |/
| * Issue #19681: Test the repr of partial with more than one keyword argument.Serhiy Storchaka2015-02-151-7/+9
| |
* | Issue #23096: Pickle representation of floats with protocol 0 now is the sameSerhiy Storchaka2015-02-152-1/+4
| | | | | | | | for both Python and C implementations.
* | Use pickled data compatible with Python 2 for testing protocols 0-2.Serhiy Storchaka2015-02-151-216/+217
|\ \ | |/
| * Use pickled data compatible with Python 2 for testing protocols 0-2.Serhiy Storchaka2015-02-151-216/+217
| |
* | Use os.devnull instead of hardcoded '/dev/null'.Serhiy Storchaka2015-02-154-12/+12
|\ \ | |/
| * Merge headsSerhiy Storchaka2015-02-157-15/+39
| |\
| * | Use os.devnull instead of hardcoded '/dev/null'.Serhiy Storchaka2015-02-154-12/+12
| | |
* | | Add a whatsnew entry for issue #22003.Berker Peksag2015-02-141-1/+2
| | | | | | | | | | | | Patch by David Wilson.
* | | Issue #13637: Improve exception message of a2b_* functions.Berker Peksag2015-02-141-2/+2
|\ \ \ | | |/ | |/| | | | Patch by Vajrasky Kok.
| * | Issue #13637: Improve exception message of a2b_* functions.Berker Peksag2015-02-141-2/+2
| | | | | | | | | | | | Patch by Vajrasky Kok.
* | | Issue #13637: Remove outdated versionchanged directives.Berker Peksag2015-02-141-6/+0
|\ \ \ | |/ / | | | | | | Patch by Martin Panter.
| * | Issue #13637: Remove outdated versionchanged directives.Berker Peksag2015-02-141-6/+0
| | | | | | | | | | | | Patch by Martin Panter.
* | | Issue #17753: Skip test_zipfile tests which require write access to testSerhiy Storchaka2015-02-141-0/+8
|\ \ \ | |/ / | | | | | | and email.test.
| * | Issue #17753: Skip test_zipfile tests which require write access to testSerhiy Storchaka2015-02-141-0/+8
| | | | | | | | | | | | and email.test.
* | | Issue #22844: Fized test_gdb failure on Debian Wheezy for Z.Serhiy Storchaka2015-02-141-0/+2
|\ \ \ | |/ / | | | | | | Patch by David Edelsohn.
| * | Issue #22844: Fized test_gdb failure on Debian Wheezy for Z.Serhiy Storchaka2015-02-141-0/+2
| | | | | | | | | | | | Patch by David Edelsohn.
* | | merge 3.4 (#22633)Benjamin Peterson2015-02-141-6/+9
|\ \ \ | |/ /
| * | avoid reading unallocated memory when argc == 0 (closes #22633)Benjamin Peterson2015-02-141-6/+9
| | |
* | | Issue #23437: Update NEWS and whatsnew/3.5Steve Dower2015-02-142-0/+13
| | |
* | | Simplify MSI projects.Steve Dower2015-02-1446-334/+447
| | |
* | | Closes #23437: Make user scripts directory versioned on Windows (patch by ↵Steve Dower2015-02-144-4/+5
| | | | | | | | | | | | pmoore)
* | | Issue #23461: Normalise line endings when comparing old and new contents of ↵Steve Dower2015-02-141-2/+2
| | | | | | | | | | | | importlib.h
* | | Issue #19105: pprint now more efficiently uses free space at the right.Serhiy Storchaka2015-02-143-39/+147
| | |
* | | Issue #14910: Add allow_abbrev parameter to argparse.ArgumentParser.Berker Peksag2015-02-135-22/+97
| | | | | | | | | | | | Patch by Jonathan Paugh, Steven Bethard, paul j3 and Daniel Eriksson.
* | | Issue #21717: tarfile.open() now supports 'x' (exclusive creation) mode.Berker Peksag2015-02-135-22/+142
| | |
* | | Issue #23418: Add missing entries to http.server.__all__.Berker Peksag2015-02-132-1/+18
|\ \ \ | |/ / | | | | | | Patch by Martin Panter.
| * | Issue #23418: Add missing entries to http.server.__all__.Berker Peksag2015-02-132-1/+18
| |/ | | | | | | Patch by Martin Panter.
* | Issue #21849: Ported from 2.7 tests for non-ASCII data.Serhiy Storchaka2015-02-131-7/+13
|\ \ | |/
| * Issue #21849: Ported from 2.7 tests for non-ASCII data.Serhiy Storchaka2015-02-131-7/+13
| |
* | Merge 3.4 (asyncio doc)Victor Stinner2015-02-126-42/+72
|\ \ | |/
| * asyncio doc: annotate coroutine on coroutine functions and methodsVictor Stinner2015-02-126-42/+72
| |
* | Issue #23450: Fix signal.set_wakeup_fd() on WindowsVictor Stinner2015-02-121-11/+14
| | | | | | | | Detect integer overflow on the file descriptor of the socket on 64-bit Python.
* | Fix installer Back button going to wrong page when modifying.Steve Dower2015-02-122-1/+10
| | | | | | | | Also fix error when doing test builds without documentation file.
* | Issue #23445: pydebug builds now use "gcc -Og" where possible, to make the ↵Antoine Pitrou2015-02-113-2/+16
|\ \ | |/ | | | | resulting executable faster.
| * Issue #23445: pydebug builds now use "gcc -Og" where possible, to make the ↵Antoine Pitrou2015-02-113-2/+16
| | | | | | | | resulting executable faster.