summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Issue #19543: Emit deprecation warning for known non-text encodings.Serhiy Storchaka2015-05-3122-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 Storchaka2015-05-311-3/+1
| | | | 24-bit samples are not supported in 2.7.
* Fixed the array module in unicode disabled build (regression of issue20014).Serhiy Storchaka2015-05-312-1/+6
|
* Issue #24264: Fixed buffer overflow in the imageop module.Serhiy Storchaka2015-05-313-3/+10
|
* Issue #21853: Fixed the inspect module in unicode disabled build.Serhiy Storchaka2015-05-312-5/+14
|
* Issue #5633: Fixed timeit when the statement is a string and the setup is not.Serhiy Storchaka2015-05-303-3/+13
|
* Issue #24115: Update uses of PyObject_IsTrue(), PyObject_Not(),Serhiy Storchaka2015-05-306-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 Storchaka2015-05-293-1/+21
| | | | Original patch by David Moore.
* Issue #22095: Fixed HTTPConnection.set_tunnel with default port. The portSerhiy Storchaka2015-05-283-7/+11
| | | | value in the host header was set to "None". Patch by Demian Brecht.
* backport computed gotos (#4753)Benjamin Peterson2015-05-289-230/+1022
|
* update for 3.6 emergingBenjamin Peterson2015-05-271-1/+2
|
* Issue 24304: Fix broken license link in FAQ.Ned Deily2015-05-271-1/+1
|
* Issue #24286: Register dict views with the MappingView ABCs.Raymond Hettinger2015-05-264-1/+32
|
* Moved Misc/NEWS entries to correct section and fix formatting.Serhiy Storchaka2015-05-261-7/+7
|
* keep distutils version in sync with python version automaticallyBenjamin Peterson2015-05-261-8/+2
|
* Remove UTF-8 BOMs.Serhiy Storchaka2015-05-251-1/+1
|
* Update idlelib/NEWS.txt.Terry Jan Reedy2015-05-231-1/+20
|
* Make expression legal python by adding '1'.Terry Jan Reedy2015-05-231-1/+1
|
* 2.7.10+Benjamin Peterson2015-05-231-1/+1
|
* merge 2.7.10 release branchBenjamin Peterson2015-05-233-4/+5
|\
| * Added tag v2.7.10 for changeset 15c95b7d81dcBenjamin Peterson2015-05-231-0/+1
| |
| * python 2.7.10 finalv2.7.10Benjamin Peterson2015-05-232-4/+4
| |
* | merge 2.7.10 release branchBenjamin Peterson2015-05-2356-224/+599
|\ \ | |/ |/|
| * Upgrade pip to 7.0.1Donald Stufft2015-05-232-1/+1
| |
| * merge 2.7.10 release branchBenjamin Peterson2015-05-221-1/+4
| |\
| * | Issue #24257: Fixed segmentation fault in sqlite3.Row constructor with fakedSerhiy Storchaka2015-05-223-1/+12
| | | | | | | | | | | | cursor type.
| * | Upgrade pip to 7.0 and setuptools to 16.0Donald Stufft2015-05-223-2/+2
| | |
| * | Fixed issue number for issue #22939.Serhiy Storchaka2015-05-211-1/+1
| | |
| * | Issue #23985: Fixed integer overflow in iterator object. Original patch bySerhiy Storchaka2015-05-213-0/+9
| | | | | | | | | | | | Clement Rouault.
| * | Issue #24134: Use assertRaises() in context manager form in test_slice toSerhiy Storchaka2015-05-201-1/+2
| | | | | | | | | | | | avoid passing the test accidently because slice.__hash__ is None.
| * | Issue #24245: Eliminated senseless expect clauses that have no any effect inSerhiy Storchaka2015-05-202-19/+12
| | | | | | | | | | | | IDLE. Patch by Martin Panter.
| * | Issue #22107: tempfile.gettempdir() and tempfile.mkdtemp() now try againSerhiy Storchaka2015-05-193-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 inSerhiy Storchaka2015-05-193-6/+31
| | | | | | | | | | | | email.utils.make_msgid() to strengthen the uniqueness of the message ID.
| * | Issue #24222: Fix regression introduced with idlelib/PyShell.py future printTerry Jan Reedy2015-05-181-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 Storchaka2015-05-182-20/+47
| | |
| * | Issue #24102: Fixed exception type checking in standard error handlers.Serhiy Storchaka2015-05-183-8/+31
| | |
| * | Issue #23757: Only call the concrete list API for exact lists.Raymond Hettinger2015-05-173-1/+16
| | |
| * | Issue #22155: Add File Handlers subsection with createfilehandler to TkinterTerry Jan Reedy2015-05-173-22/+59
| | | | | | | | | | | | doc. Remove obsolete example from FAQ. Patch by Martin Panter.
| * | Issue #15809: IDLE shell now uses locale encoding instead of Latin1 forSerhiy Storchaka2015-05-173-3/+13
| | | | | | | | | | | | decoding unicode literals.
| * | Issue #24199: Stop using idelver in aboutdialog.Terry Jan Reedy2015-05-161-8/+7
| | |
| * | Added tests for more builtin types.Serhiy Storchaka2015-05-161-3/+6
| | |
| * | Issue #23964: Update idlelib/idle_test/README.txt. first patch by Al Sweigart.Terry Jan Reedy2015-05-161-50/+78
| | |
| * | Issue #15267: HTTPConnection.request() now is compatibile with old-styleSerhiy Storchaka2015-05-163-1/+21
| | | | | | | | | | | | classes (such as TemporaryFile). Original patch by Atsuo Ishimoto.
| * | Issue #20014: array.array() now accepts unicode typecodes. Based on patch bySerhiy Storchaka2015-05-163-3/+39
| | | | | | | | | | | | Vajrasky Kok.
| * | Issue #23637: Showing a warning no longer fails with UnicodeErrror.Serhiy Storchaka2015-05-163-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 Storchaka2015-05-163-12/+7
| | |
| * | Issue #23184: idle tests, remove unused names and imports.Terry Jan Reedy2015-05-165-9/+7
| | |
| * | Issue #23184: idlelib, remove more unused names and imports.Terry Jan Reedy2015-05-165-18/+10
| | |
| * | merge 2.7.10 release branchBenjamin Peterson2015-05-151-1/+1
| |\ \
| * | | idlelib: remove unused names and imports (forgot one).Terry Jan Reedy2015-05-141-1/+0
| | | |