summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Issue #27343: Fixed error message for conflicting initializers of ↵Serhiy Storchaka2016-06-182-10/+5
|\ | | | | | | ctypes.Structure.
| * Issue #27343: Fixed error message for conflicting initializers of ↵Serhiy Storchaka2016-06-182-10/+5
| | | | | | | | ctypes.Structure.
* | Issue #27333: Simplified testing step on 0.Serhiy Storchaka2016-06-181-11/+4
| |
* | Issue #27342: Replaced some Py_XDECREFs with Py_DECREFs.Serhiy Storchaka2016-06-182-7/+7
| | | | | | | | Patch by Xiang Zhang.
* | Issue #27312: Fix TypeError in test_setupappBerker Peksag2016-06-181-1/+4
| |
* | Issue #27312: mock out function that fails when called from setupApp duringTerry Jan Reedy2016-06-171-0/+1
| | | | | | | | IDLE test_macosx and see if addOpenEventSupport() fails.
* | Issue #26536: socket.ioctl now supports SIO_LOOPBACK_FAST_PATH. Patch by ↵Steve Dower2016-06-176-4/+57
| | | | | | | | Daniel Stokes.
* | Issue #27048: Prevents distutils failing on Windows when environment ↵Steve Dower2016-06-173-4/+23
|\ \ | |/ | | | | variables contain non-ASCII characters
| * Issue #27048: Prevents distutils failing on Windows when environment ↵Steve Dower2016-06-173-4/+23
| | | | | | | | variables contain non-ASCII characters
* | Issue #27336: Fix compilation on WindowsVictor Stinner2016-06-171-2/+2
| | | | | | | | Replace "#if WITH_THREAD" with "#ifdef WITH_THREAD".
* | Issue #27336: Fix compilation failures --without-threadsBerker Peksag2016-06-173-3/+6
| |
* | ctypes: the type of b_size is Py_ssize_t.Serhiy Storchaka2016-06-171-4/+4
|\ \ | |/
| * ctypes: the type of b_size is Py_ssize_t.Serhiy Storchaka2016-06-171-4/+4
| |
* | Merge 3.5Victor Stinner2016-06-161-2/+2
|\ \ | |/
| * py_getrandom(): use long type for the syscall() resultVictor Stinner2016-06-161-2/+2
| | | | | | | | | | | | | | Issue #27278. It should fix a conversion warning. In practice, the Linux kernel doesn't return more than 32 MB per call to the getrandom() syscall.
* | Issue #27330: Fixed possible leaks in the ctypes module.Serhiy Storchaka2016-06-164-22/+33
|\ \ | |/
| * Issue #27330: Fixed possible leaks in the ctypes module.Serhiy Storchaka2016-06-164-22/+33
| |
* | Issue #26930: Merge with 3.5Zachary Ware2016-06-154-3/+5
|\ \ | |/
| * Issue #26930: Update Windows build to OpenSSL 1.0.2hZachary Ware2016-06-154-3/+4
| |
* | Issue #27327: null merge from 3.5Ned Deily2016-06-150-0/+0
|\ \ | |/
| * Issue #27327: fix doc typo, noted by Jakub Wilk.Ned Deily2016-06-151-1/+1
| |
* | Issue #27301: Fixed incorrect return codes for errors in compile.c.Serhiy Storchaka2016-06-151-24/+38
|\ \ | |/
| * Issue #27301: Fixed incorrect return codes for errors in compile.c.Serhiy Storchaka2016-06-151-16/+20
| |
* | Merge from 3.5Berker Peksag2016-06-151-1/+1
|\ \ | |/
| * Make faq/general.rst gender-inclusive, patch by Sam Hathaway.Berker Peksag2016-06-151-1/+1
| |
* | Issue #26862: SYS_getdents64 does not need to be defined on android API 21.Xavier de Gaye2016-06-151-2/+1
| |
* | merge with 3.5Georg Brandl2016-06-151-1/+8
|\ \ | |/
| * merge with 3.4Georg Brandl2016-06-151-1/+8
| |\
| | * Docs: add html-stable autobuild variantGeorg Brandl2016-06-151-1/+7
| | |
* | | Issue #27311: Merge zipfile doc from 3.5Martin Panter2016-06-151-2/+2
|\ \ \ | |/ /
| * | Issue #27311: Fix ZipFile.writestr data argument name.Martin Panter2016-06-151-2/+2
| | | | | | | | | | | | Patch by John Hagen.
* | | Issue #27238: Got rid of bare excepts in the turtle module. Original patchSerhiy Storchaka2016-06-142-9/+12
|\ \ \ | |/ / | | | | | | by Jelle Zijlstra.
| * | Issue #27238: Got rid of bare excepts in the turtle module. Original patchSerhiy Storchaka2016-06-143-9/+13
| | | | | | | | | | | | by Jelle Zijlstra.
* | | issue27122: fix typo in the news file, wrong issue #. not issue27123.Gregory P. Smith2016-06-141-1/+1
|\ \ \ | |/ /
| * | issue27122: fix typo in the news file, wrong issue #. not issue27123.Gregory P. Smith2016-06-141-1/+1
| | |
* | | Issue #27123: When an exception is raised within the context beingGregory P. Smith2016-06-143-0/+37
|\ \ \ | |/ / | | | | | | | | | | | | | | | managed by a contextlib.ExitStack() and one of the exit stack generators catches and raises it in a chain, do not re-raise the original exception when exiting, let the new chained one through. This avoids the PEP 479 bug described in issue25782.
| * | Issue #27123: When an exception is raised within the context beingGregory P. Smith2016-06-143-0/+37
| | | | | | | | | | | | | | | | | | | | | managed by a contextlib.ExitStack() and one of the exit stack generators catches and raises it in a chain, do not re-raise the original exception when exiting, let the new chained one through. This avoids the PEP 479 bug described in issue25782.
* | | subprocess: enhance ResourceWarning messageVictor Stinner2016-06-141-3/+4
| | | | | | | | | | | | | | | * Add the process identifier to the warning message * Add also a comment to explain the issue
* | | Merge 3.5Victor Stinner2016-06-141-1/+1
|\ \ \ | |/ /
| * | cleanup random.cVictor Stinner2016-06-141-1/+1
| | | | | | | | | | | | Casting Py_ssize_t to Py_ssize_t is useless.
* | | Merge 3.5 (os.urandom, issue #27278)Victor Stinner2016-06-142-1/+5
|\ \ \ | |/ /
| * | Fix os.urandom() using getrandom() on LinuxVictor Stinner2016-06-142-1/+5
| | | | | | | | | | | | | | | | | | Issue #27278: Fix os.urandom() implementation using getrandom() on Linux. Truncate size to INT_MAX and loop until we collected enough random bytes, instead of casting a directly Py_ssize_t to int.
* | | Merge 3.5Victor Stinner2016-06-141-1/+1
|\ \ \ | |/ /
| * | Issue #25843: Fix the NEWS entryVictor Stinner2016-06-141-1/+1
| | |
* | | Issue #16864: Cursor.lastrowid now supports REPLACE statementBerker Peksag2016-06-146-5/+66
| | | | | | | | | | | | Initial patch by Alex LordThorsen.
* | | Issue #16182: Merge test_readline from 3.5Martin Panter2016-06-141-1/+1
|\ \ \ | |/ /
| * | Issue #16182: One more check for set_pre_input_hook()Martin Panter2016-06-141-1/+1
| | |
* | | Merge from 3.5Berker Peksag2016-06-144-16/+9
|\ \ \ | |/ /
| * | Mark tests as skipped when a SQLite version is not supportedBerker Peksag2016-06-144-16/+9
| | |
* | | Merge from 3.5Berker Peksag2016-06-142-18/+0
|\ \ \ | |/ /