Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Issue #27006: Do not use PyDec_CheckExact() on a type. | Stefan Krah | 2016-06-20 | 1 | -1/+1 |
| | |||||
* | Issue #27006: from_float(): call the subclass' __new__() and __init__(). | Stefan Krah | 2016-06-20 | 2 | -3/+12 |
| | |||||
* | Fix spelling errors in code comments | Martin Panter | 2016-06-20 | 2 | -3/+3 |
| | |||||
* | Added more tests for issue #27122. | Serhiy Storchaka | 2016-06-20 | 1 | -5/+11 |
| | |||||
* | Issue #23641: Added __getnewargs_ex__ to the list of special mock attributes. | Serhiy Storchaka | 2016-06-19 | 1 | -0/+1 |
| | |||||
* | Issue #27294: Numerical state in the repr for Tkinter event objects is now | Serhiy Storchaka | 2016-06-18 | 4 | -5/+61 |
| | | | | represented as a compination of known flags. | ||||
* | Issue #27349: Fix typo in distutils upload command | Berker Peksag | 2016-06-18 | 2 | -2/+3 |
| | |||||
* | issue27021 - Document SC_IOV_MAX limitation imposed by OS on os.writev. | Senthil Kumaran | 2016-06-18 | 1 | -1/+5 |
| | | | | Patch contributed Марк Коренберг. | ||||
* | Issue #26754: PyUnicode_FSDecoder() accepted a filename argument encoded as | Serhiy Storchaka | 2016-06-18 | 6 | -1/+62 |
| | | | | an iterable of integers. Now only strings and byte-like objects are accepted. | ||||
* | Issue #24314: Fix doc links for general attributes like __name__, __dict__ | Martin Panter | 2016-06-18 | 14 | -64/+69 |
| | |||||
* | Issue #27343: Fixed error message for conflicting initializers of ↵ | Serhiy Storchaka | 2016-06-18 | 2 | -10/+5 |
| | | | | ctypes.Structure. | ||||
* | Issue #27048: Prevents distutils failing on Windows when environment ↵ | Steve Dower | 2016-06-17 | 3 | -4/+23 |
| | | | | variables contain non-ASCII characters | ||||
* | ctypes: the type of b_size is Py_ssize_t. | Serhiy Storchaka | 2016-06-17 | 1 | -4/+4 |
| | |||||
* | py_getrandom(): use long type for the syscall() result | Victor Stinner | 2016-06-16 | 1 | -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 Storchaka | 2016-06-16 | 4 | -22/+33 |
| | |||||
* | Issue #26930: Update Windows build to OpenSSL 1.0.2h | Zachary Ware | 2016-06-15 | 4 | -3/+4 |
| | |||||
* | Issue #27327: fix doc typo, noted by Jakub Wilk. | Ned Deily | 2016-06-15 | 1 | -1/+1 |
| | |||||
* | Issue #27301: Fixed incorrect return codes for errors in compile.c. | Serhiy Storchaka | 2016-06-15 | 1 | -16/+20 |
| | |||||
* | Make faq/general.rst gender-inclusive, patch by Sam Hathaway. | Berker Peksag | 2016-06-15 | 1 | -1/+1 |
| | |||||
* | merge with 3.4 | Georg Brandl | 2016-06-15 | 1 | -1/+8 |
|\ | |||||
| * | Docs: add html-stable autobuild variant | Georg Brandl | 2016-06-15 | 1 | -1/+7 |
| | | |||||
* | | Issue #27311: Fix ZipFile.writestr data argument name. | Martin Panter | 2016-06-15 | 1 | -2/+2 |
| | | | | | | | | Patch by John Hagen. | ||||
* | | Issue #27238: Got rid of bare excepts in the turtle module. Original patch | Serhiy Storchaka | 2016-06-14 | 3 | -9/+13 |
| | | | | | | | | by Jelle Zijlstra. | ||||
* | | issue27122: fix typo in the news file, wrong issue #. not issue27123. | Gregory P. Smith | 2016-06-14 | 1 | -1/+1 |
| | | |||||
* | | Issue #27123: When an exception is raised within the context being | Gregory P. Smith | 2016-06-14 | 3 | -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. | ||||
* | | cleanup random.c | Victor Stinner | 2016-06-14 | 1 | -1/+1 |
| | | | | | | | | Casting Py_ssize_t to Py_ssize_t is useless. | ||||
* | | Fix os.urandom() using getrandom() on Linux | Victor Stinner | 2016-06-14 | 2 | -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. | ||||
* | | Issue #25843: Fix the NEWS entry | Victor Stinner | 2016-06-14 | 1 | -1/+1 |
| | | |||||
* | | Issue #16182: One more check for set_pre_input_hook() | Martin Panter | 2016-06-14 | 1 | -1/+1 |
| | | |||||
* | | Mark tests as skipped when a SQLite version is not supported | Berker Peksag | 2016-06-14 | 4 | -16/+9 |
| | | |||||
* | | Remove empty setUp and tearDown methods from sqlite3 tests | Berker Peksag | 2016-06-14 | 2 | -18/+0 |
| | | | | | | | | | | They are not used as base classes by another tests so they can safely be removed. | ||||
* | | Delete outdated paragraph about OptimizedUnicode again | Berker Peksag | 2016-06-14 | 1 | -4/+0 |
| | | | | | | | | | | | | | | | | | | sqlite3.OptimizedUnicode is an alias for str in Python 3 and its behavior is already tested in CheckOptimizedUnicode in Lib/sqlite3/test/factory.py. sqlite3.OptimizedUnicode was undocumented in 0fc10a33eb4c and probably added back with the result of a bad merge. | ||||
* | | Issue #26386: Fixed ttk.TreeView selection operations with item id's | Serhiy Storchaka | 2016-06-14 | 3 | -1/+57 |
| | | | | | | | | containing spaces. | ||||
* | | Issue #16182: set_pre_input_hook() may not exist; document, and update test | Martin Panter | 2016-06-14 | 2 | -9/+20 |
| | | |||||
* | | merge 3.4 | Benjamin Peterson | 2016-06-14 | 2 | -4/+4 |
|\ \ | |/ | |||||
| * | sync ordering of stddef.h includes with expat 2.1.1 | Benjamin Peterson | 2016-06-14 | 2 | -4/+4 |
| | | |||||
* | | Issue #16182: Attempted workarounds for Apple Editline | Martin Panter | 2016-06-14 | 1 | -5/+13 |
| | | |||||
* | | Issue #27245: IDLE: Cleanly delete custom themes and key bindings. | Terry Jan Reedy | 2016-06-14 | 1 | -2/+6 |
| | | | | | | | | | | Previously, when IDLE was started from a console or by import, a cascade of warnings was emitted. Patch by Serhiy Storchaka. | ||||
* | | Issue #22636: Handle OSError from subprocess, e.g. if command not found | Martin Panter | 2016-06-14 | 1 | -19/+35 |
| | | |||||
* | | Issue #22636: avoid using a shell in the ctypes.util module | Martin Panter | 2016-06-14 | 3 | -44/+85 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | Replace os.popen() with subprocess.Popen. Based on patch by Victor Stinner. If the "gcc", "cc" or "objdump" command is not available, the code was supposed to raise an OSError exception. But there was a bug in the code. The shell code returns the exit code 10 if the required command is missing, and the code tries to check for the status 10. The problem is that os.popen() doesn't return the exit code directly, but a status which should be processed by os.WIFEXITED() and os.WEXITSTATUS(). In practice, the exception was never raised. The OSError exception was not documented and ctypes.util.find_library() is expected to return None if the library is not found. | ||||
* | | Issue #16182: Fix readline begidx, endidx, and use locale encoding | Martin Panter | 2016-06-14 | 3 | -42/+235 |
| | | | | | | | | Based on patch by Serhiy Storchaka. | ||||
* | | Issue #27310: remove vestigial import in IDLE.app | Ned Deily | 2016-06-14 | 1 | -2/+0 |
| | | |||||
* | | Issue #27136: Change test to use ::1 for better OS X Tiger compatibility | Martin Panter | 2016-06-13 | 1 | -4/+4 |
| | | |||||
* | | Issue #27306: Fix typo in tarfile documentation | Berker Peksag | 2016-06-13 | 1 | -7/+7 |
| | | | | | | | | Patch by Gareth Rees. | ||||
* | | Replace more boilerplate code with modern unittest features in sqlite3 tests | Berker Peksag | 2016-06-13 | 3 | -13/+6 |
| | | |||||
* | | Forward-merge from 3.4 to 3.5. | Larry Hastings | 2016-06-13 | 1 | -0/+1 |
|\ \ | |/ | |||||
| * | Added tag v3.4.5rc1 for changeset 3631bb4a2490 | Larry Hastings | 2016-06-12 | 1 | -0/+1 |
| | | |||||
| * | Release bump for 3.4.5rc1.v3.4.5rc1 | Larry Hastings | 2016-06-12 | 3 | -9/+9 |
| | | |||||
| * | Regenerate pydoc topics for 3.4.5rc1. | Larry Hastings | 2016-06-12 | 1 | -2/+2 |
| | | |||||
* | | Merge 3.5.2rc1 with current 3.5 branch. | Larry Hastings | 2016-06-13 | 28 | -424/+370 |
|\ \ |