summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Merge 3.5.Stefan Krah2016-06-202-3/+12
|\
| * Issue #27006: from_float(): call the subclass' __new__() and __init__().Stefan Krah2016-06-202-3/+12
| |
* | Fix “allow(s) to”Martin Panter2016-06-202-2/+2
| |
* | Merge spelling fixes from 3.5Martin Panter2016-06-202-2/+2
|\ \ | |/
| * Fix spelling errors in code commentsMartin Panter2016-06-202-3/+3
| |
* | Added more tests for issue #27122.Serhiy Storchaka2016-06-201-5/+11
|\ \ | |/
| * Added more tests for issue #27122.Serhiy Storchaka2016-06-201-5/+11
| |
* | Issue #27319: Methods selection_set(), selection_add(), selection_remove()Serhiy Storchaka2016-06-193-20/+90
| | | | | | | | | | | | and selection_toggle() of ttk.TreeView now allow to pass multiple items as multiple arguments instead of passing them as a tuple. Deprecated undocumented ability of calling the selection() method with arguments.
* | Issue #23641: Added __getnewargs_ex__ to the list of special mock attributes.Serhiy Storchaka2016-06-191-0/+1
|\ \ | |/
| * Issue #23641: Added __getnewargs_ex__ to the list of special mock attributes.Serhiy Storchaka2016-06-191-0/+1
| |
* | Use macros instead of corresponding functions (they never fail) in _tkinter.c.Serhiy Storchaka2016-06-191-22/+26
| |
* | Issue #23968: Fix installs of the renamed config directory for OS XNed Deily2016-06-181-4/+4
| | | | | | | | framework builds.
* | Issue #27294: Numerical state in the repr for Tkinter event objects is nowSerhiy Storchaka2016-06-184-5/+61
|\ \ | |/ | | | | represented as a compination of known flags.
| * Issue #27294: Numerical state in the repr for Tkinter event objects is nowSerhiy Storchaka2016-06-184-5/+61
| | | | | | | | represented as a compination of known flags.
* | Issue #27294: Numerical state in the repr for Tkinter event objects is nowSerhiy Storchaka2016-06-182-8/+24
| | | | | | | | represented as a compination of known flags.
* | Issue #27349: Merge from 3.5Berker Peksag2016-06-182-2/+3
|\ \ | |/
| * Issue #27349: Fix typo in distutils upload commandBerker Peksag2016-06-182-2/+3
| |
* | [merge from 3.5] - issue27021 - Document SC_IOV_MAX limitation imposed by OS ↵Senthil Kumaran2016-06-181-1/+5
|\ \ | |/ | | | | | | | | on os.writev. Patch contributed Марк Коренберг.
| * issue27021 - Document SC_IOV_MAX limitation imposed by OS on os.writev.Senthil Kumaran2016-06-181-1/+5
| | | | | | | | Patch contributed Марк Коренберг.
* | Issue #27177: Match objects in the re module now support index-like objectsSerhiy Storchaka2016-06-183-9/+27
| | | | | | | | as group indices. Based on patches by Jeroen Demeyer and Xiang Zhang.
* | Issue #26536: Use spaces instead of tabsBerker Peksag2016-06-181-4/+4
| |
* | Issue #26536: Skip test_sio_loopback_fast_path under Windows 7Berker Peksag2016-06-181-2/+8
| |
* | Issue #26754: PyUnicode_FSDecoder() accepted a filename argument encoded asSerhiy Storchaka2016-06-186-1/+61
|\ \ | |/ | | | | an iterable of integers. Now only strings and byte-like objects are accepted.
| * Issue #26754: PyUnicode_FSDecoder() accepted a filename argument encoded asSerhiy Storchaka2016-06-186-1/+62
| | | | | | | | an iterable of integers. Now only strings and byte-like objects are accepted.
* | Issue #24314: Merge doc links from 3.5Martin Panter2016-06-1814-64/+69
|\ \ | |/
| * Issue #24314: Fix doc links for general attributes like __name__, __dict__Martin Panter2016-06-1814-64/+69
| |
* | 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
|\ \ | |/