Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Issue #19543: Emit deprecation warning for known non-text encodings. | Serhiy Storchaka | 2015-05-31 | 22 | -70/+391 |
| | | | | | | | | | | Backported issues #19619: encode() and decode() methods and constructors of str, unicode and bytearray classes now emit deprecation warning for known non-text encodings when Python is ran with the -3 option. Backported issues #20404: io.TextIOWrapper (and hence io.open()) now uses the internal codec marking system added to emit deprecation warning for known non-text encodings at stream construction time when Python is ran with the -3 option. | ||||
* | Fixed test_audioop for issue #24326. | Serhiy Storchaka | 2015-05-31 | 1 | -3/+1 |
| | | | | 24-bit samples are not supported in 2.7. | ||||
* | Fixed the array module in unicode disabled build (regression of issue20014). | Serhiy Storchaka | 2015-05-31 | 2 | -1/+6 |
| | |||||
* | Issue #24264: Fixed buffer overflow in the imageop module. | Serhiy Storchaka | 2015-05-31 | 3 | -3/+10 |
| | |||||
* | Issue #21853: Fixed the inspect module in unicode disabled build. | Serhiy Storchaka | 2015-05-31 | 2 | -5/+14 |
| | |||||
* | Issue #5633: Fixed timeit when the statement is a string and the setup is not. | Serhiy Storchaka | 2015-05-30 | 3 | -3/+13 |
| | |||||
* | Issue #24115: Update uses of PyObject_IsTrue(), PyObject_Not(), | Serhiy Storchaka | 2015-05-30 | 6 | -44/+83 |
| | | | | | PyObject_IsInstance(), PyObject_RichCompareBool() and _PyDict_Contains() to check for and handle errors correctly. | ||||
* | Issue #24326: Fixed audioop.ratecv() with non-default weightB argument. | Serhiy Storchaka | 2015-05-29 | 3 | -1/+21 |
| | | | | Original patch by David Moore. | ||||
* | Issue #22095: Fixed HTTPConnection.set_tunnel with default port. The port | Serhiy Storchaka | 2015-05-28 | 3 | -7/+11 |
| | | | | value in the host header was set to "None". Patch by Demian Brecht. | ||||
* | backport computed gotos (#4753) | Benjamin Peterson | 2015-05-28 | 9 | -230/+1022 |
| | |||||
* | update for 3.6 emerging | Benjamin Peterson | 2015-05-27 | 1 | -1/+2 |
| | |||||
* | Issue 24304: Fix broken license link in FAQ. | Ned Deily | 2015-05-27 | 1 | -1/+1 |
| | |||||
* | Issue #24286: Register dict views with the MappingView ABCs. | Raymond Hettinger | 2015-05-26 | 4 | -1/+32 |
| | |||||
* | Moved Misc/NEWS entries to correct section and fix formatting. | Serhiy Storchaka | 2015-05-26 | 1 | -7/+7 |
| | |||||
* | keep distutils version in sync with python version automatically | Benjamin Peterson | 2015-05-26 | 1 | -8/+2 |
| | |||||
* | Remove UTF-8 BOMs. | Serhiy Storchaka | 2015-05-25 | 1 | -1/+1 |
| | |||||
* | Update idlelib/NEWS.txt. | Terry Jan Reedy | 2015-05-23 | 1 | -1/+20 |
| | |||||
* | Make expression legal python by adding '1'. | Terry Jan Reedy | 2015-05-23 | 1 | -1/+1 |
| | |||||
* | 2.7.10+ | Benjamin Peterson | 2015-05-23 | 1 | -1/+1 |
| | |||||
* | merge 2.7.10 release branch | Benjamin Peterson | 2015-05-23 | 3 | -4/+5 |
|\ | |||||
| * | Added tag v2.7.10 for changeset 15c95b7d81dc | Benjamin Peterson | 2015-05-23 | 1 | -0/+1 |
| | | |||||
| * | python 2.7.10 finalv2.7.10 | Benjamin Peterson | 2015-05-23 | 2 | -4/+4 |
| | | |||||
* | | merge 2.7.10 release branch | Benjamin Peterson | 2015-05-23 | 56 | -224/+599 |
|\ \ | |/ |/| | |||||
| * | Upgrade pip to 7.0.1 | Donald Stufft | 2015-05-23 | 2 | -1/+1 |
| | | |||||
| * | merge 2.7.10 release branch | Benjamin Peterson | 2015-05-22 | 1 | -1/+4 |
| |\ | |||||
| * | | Issue #24257: Fixed segmentation fault in sqlite3.Row constructor with faked | Serhiy Storchaka | 2015-05-22 | 3 | -1/+12 |
| | | | | | | | | | | | | cursor type. | ||||
| * | | Upgrade pip to 7.0 and setuptools to 16.0 | Donald Stufft | 2015-05-22 | 3 | -2/+2 |
| | | | |||||
| * | | Fixed issue number for issue #22939. | Serhiy Storchaka | 2015-05-21 | 1 | -1/+1 |
| | | | |||||
| * | | Issue #23985: Fixed integer overflow in iterator object. Original patch by | Serhiy Storchaka | 2015-05-21 | 3 | -0/+9 |
| | | | | | | | | | | | | Clement Rouault. | ||||
| * | | Issue #24134: Use assertRaises() in context manager form in test_slice to | Serhiy Storchaka | 2015-05-20 | 1 | -1/+2 |
| | | | | | | | | | | | | avoid passing the test accidently because slice.__hash__ is None. | ||||
| * | | Issue #24245: Eliminated senseless expect clauses that have no any effect in | Serhiy Storchaka | 2015-05-20 | 2 | -19/+12 |
| | | | | | | | | | | | | IDLE. Patch by Martin Panter. | ||||
| * | | Issue #22107: tempfile.gettempdir() and tempfile.mkdtemp() now try again | Serhiy Storchaka | 2015-05-19 | 3 | -10/+64 |
| | | | | | | | | | | | | | | | | | | when a directory with the chosen name already exists on Windows as well as on Unix. tempfile.mkstemp() now fails early if parent directory is not valid (not exists or is a file) on Windows. | ||||
| * | | Issue #6598: Increased time precision and random number range in | Serhiy Storchaka | 2015-05-19 | 3 | -6/+31 |
| | | | | | | | | | | | | email.utils.make_msgid() to strengthen the uniqueness of the message ID. | ||||
| * | | Issue #24222: Fix regression introduced with idlelib/PyShell.py future print | Terry Jan Reedy | 2015-05-18 | 1 | -1/+1 |
| | | | | | | | | | | | | import. Idle -c "code", -r file.py again compile with print statement. | ||||
| * | | Issue #24091: Fixed various crashes in corner cases in cElementTree. | Serhiy Storchaka | 2015-05-18 | 2 | -20/+47 |
| | | | |||||
| * | | Issue #24102: Fixed exception type checking in standard error handlers. | Serhiy Storchaka | 2015-05-18 | 3 | -8/+31 |
| | | | |||||
| * | | Issue #23757: Only call the concrete list API for exact lists. | Raymond Hettinger | 2015-05-17 | 3 | -1/+16 |
| | | | |||||
| * | | Issue #22155: Add File Handlers subsection with createfilehandler to Tkinter | Terry Jan Reedy | 2015-05-17 | 3 | -22/+59 |
| | | | | | | | | | | | | doc. Remove obsolete example from FAQ. Patch by Martin Panter. | ||||
| * | | Issue #15809: IDLE shell now uses locale encoding instead of Latin1 for | Serhiy Storchaka | 2015-05-17 | 3 | -3/+13 |
| | | | | | | | | | | | | decoding unicode literals. | ||||
| * | | Issue #24199: Stop using idelver in aboutdialog. | Terry Jan Reedy | 2015-05-16 | 1 | -8/+7 |
| | | | |||||
| * | | Added tests for more builtin types. | Serhiy Storchaka | 2015-05-16 | 1 | -3/+6 |
| | | | |||||
| * | | Issue #23964: Update idlelib/idle_test/README.txt. first patch by Al Sweigart. | Terry Jan Reedy | 2015-05-16 | 1 | -50/+78 |
| | | | |||||
| * | | Issue #15267: HTTPConnection.request() now is compatibile with old-style | Serhiy Storchaka | 2015-05-16 | 3 | -1/+21 |
| | | | | | | | | | | | | classes (such as TemporaryFile). Original patch by Atsuo Ishimoto. | ||||
| * | | Issue #20014: array.array() now accepts unicode typecodes. Based on patch by | Serhiy Storchaka | 2015-05-16 | 3 | -3/+39 |
| | | | | | | | | | | | | Vajrasky Kok. | ||||
| * | | Issue #23637: Showing a warning no longer fails with UnicodeErrror. | Serhiy Storchaka | 2015-05-16 | 3 | -2/+81 |
| | | | | | | | | | | | | | | | Formatting unicode warning in the file with the path containing non-ascii characters no longer fails with UnicodeErrror. | ||||
| * | | Reverted issue #24134 changes. | Serhiy Storchaka | 2015-05-16 | 3 | -12/+7 |
| | | | |||||
| * | | Issue #23184: idle tests, remove unused names and imports. | Terry Jan Reedy | 2015-05-16 | 5 | -9/+7 |
| | | | |||||
| * | | Issue #23184: idlelib, remove more unused names and imports. | Terry Jan Reedy | 2015-05-16 | 5 | -18/+10 |
| | | | |||||
| * | | merge 2.7.10 release branch | Benjamin Peterson | 2015-05-15 | 1 | -1/+1 |
| |\ \ | |||||
| * | | | idlelib: remove unused names and imports (forgot one). | Terry Jan Reedy | 2015-05-14 | 1 | -1/+0 |
| | | | |