summaryrefslogtreecommitdiffstats
path: root/Lib
Commit message (Expand)AuthorAgeFilesLines
* #16765: remove unused import.Ezio Melotti2012-12-251-1/+0
* Fix issue16713 - tel url parsing with paramsSenthil Kumaran2012-12-242-1/+34
* Keep ref to ECHILD in local scope (#16650)Andrew Svetlov2012-12-241-2/+2
* Issue #13863: fix incorrect .pyc timestamps on Windows / NTFS (apparently due...Mark Dickinson2012-12-241-0/+41
* Issue #16511: Use default IDLE width and height if config param is not valid.Andrew Svetlov2012-12-244-27/+48
* Fix Issue15701 - HTTPError info method call raises AttributeError. Fix that t...Senthil Kumaran2012-12-232-10/+29
* Issue #16045: add more unit tests for built-in int()Andrew Svetlov2012-12-232-0/+56
* #8853: Allow port to be of type long for socket.getaddrinfo()Petri Lehtinen2012-12-201-1/+2
* call close on the underlying stream even if flush raises (#16597)Benjamin Peterson2012-12-202-4/+35
* replace threw with raised (#16714)Andrew Svetlov2012-12-192-2/+2
* revert comment wording (#16714)Andrew Svetlov2012-12-191-1/+1
* Issue #16714: use 'raise' exceptions, don't 'throw'.Andrew Svetlov2012-12-1829-45/+45
* merge headsAndrew Svetlov2012-12-171-2/+2
|\
| * Issue #16647: save socket error details in LMTP.connect()Andrew Svetlov2012-12-171-2/+2
* | Fix issue #16646: ftplib.FTP.makeport() might lose socket error details. (pa...Giampaolo Rodola'2012-12-171-4/+7
|/
* Issue #16626: Fix infinite recursion in glob.glob() on Windows when the patte...Antoine Pitrou2012-12-162-1/+13
* #16664: Add regression tests for glob's behaviour concerning "."-entriesHynek Schlawack2012-12-161-1/+6
* Issue #16298: In HTTPResponse.read(), close the socket when there is no Conte...Antoine Pitrou2012-12-152-1/+18
* Issue #16582: use int exit code in tkinter._exitAndrew Svetlov2012-12-091-1/+5
* Issue #16248: Disable code execution from the user's home directory by tkinte...Antoine Pitrou2012-12-091-1/+3
* Branch mergeÉric Araujo2012-12-093-16/+25
|\
| * Use proper skip instead of reporting success in one distutils testÉric Araujo2012-12-091-7/+1
| * Fix setup.py register failure with invalid rst in description (#13614).Éric Araujo2012-12-092-4/+24
| * Remove code unneeded after f833e7ec4de1Éric Araujo2012-12-081-5/+0
* | Issue #16602: When a weakref's target was part of a long deallocation chain, ...Antoine Pitrou2012-12-081-0/+21
|/
* Issue #15747: skip chflags UF_IMMUTABLE tests if EOPNOTSUPP is raised.Victor Stinner2012-12-041-3/+20
* Fix test splitting in previous commit.Antoine Pitrou2012-12-031-4/+2
* Split the bigmem re test in two separate tests with different memory requirem...Antoine Pitrou2012-12-031-2/+10
* Issue #10182: The re module doesn't truncate indices to 32 bits anymore.Antoine Pitrou2012-12-021-0/+16
* Minor fixups. Early-out for equality test. Inline PREV/NEXT constants.Raymond Hettinger2012-12-021-16/+15
* fix spellingBenjamin Peterson2012-11-301-2/+3
* Remove redundant check for symlink. (closes #6036)Benjamin Peterson2012-11-301-13/+14
* enumerate only requires an iterable (closes #16573)Benjamin Peterson2012-11-292-6/+18
* Issue #16477: Close tarfile internal handlers in case of exception.Andrew Svetlov2012-11-291-7/+7
* #16549: fix test failures on Windows.Ezio Melotti2012-11-291-2/+2
* #16476: Fix json.tool to avoid including trailing whitespace.Ezio Melotti2012-11-292-9/+10
* #16549: Add tests for json.tools. Initial patch by Berker Peksag and Serhiy ...Ezio Melotti2012-11-292-6/+77
* #16333: document a way to get rid of trailing whitespace when indent is used.Ezio Melotti2012-11-282-5/+12
* #16559: Add more tests for the json module. Patch by Serhiy Storchaka.Ezio Melotti2012-11-263-15/+44
* Issue #9011: AST creation no longer modifies CST for negated numeric literals.Mark Dickinson2012-11-251-0/+11
* Issue #16339: Document and test exec(stmt, globals, locals) form in Python 2.7.Mark Dickinson2012-11-251-0/+28
* test_winsound should require the "audio" resource, as it does on 3.x.Antoine Pitrou2012-11-241-0/+1
* #16306: report only the first unknown option and add more tests. Patch by Se...Ezio Melotti2012-11-231-4/+14
* Remove steps no longer needed once __del__ was removedRaymond Hettinger2012-11-211-2/+0
* Fit nit: the return got dropped from an earlier check-inRaymond Hettinger2012-11-211-1/+1
* Issue #1160: Fix compiling large regular expressions on UCS2 builds.Antoine Pitrou2012-11-201-0/+6
* #7782: add a test for test_iter.Ezio Melotti2012-11-181-0/+15
* #16306: Fix multiple error messages when unknown command line parameters wher...Ezio Melotti2012-11-181-1/+10
* #14313: zipfile now raises NotImplementedError when the compression type is u...Ezio Melotti2012-11-182-0/+39
* Issue #16408: Fix file descriptors not being closed in error conditions in th...Antoine Pitrou2012-11-171-210/+204