summaryrefslogtreecommitdiffstats
path: root/Lib
Commit message (Collapse)AuthorAgeFilesLines
* update topicsv2.7.5Benjamin Peterson2013-05-121-9/+9
|
* bump version to 2.7.5Benjamin Peterson2013-05-122-2/+2
|
* prevent IDLE from trying to close when sys.stdin is reassigned (#17838)Benjamin Peterson2013-05-121-0/+5
|
* backout 214d8909513d for regressions (#1159051)Benjamin Peterson2013-05-113-68/+36
|
* Issue #16601: Restarting iteration over tarfile no more continues from whereSerhiy Storchaka2013-05-092-5/+15
| | | | it left off. Patch by Michael Birtwell.
* Issue 16584: in filecomp._cmp, catch IOError as well as os.error.Terry Jan Reedy2013-05-091-1/+1
| | | | Patch by Till Maas.
* Issue #17656: Skip test_extract_unicode_filenames if the FS encodingSerhiy Storchaka2013-05-081-1/+9
| | | | doesn't support non-ASCII filenames.
* #17833: add debug output to investigate buildbot failure.Ezio Melotti2013-05-071-4/+14
|
* Issue #17918: When using SSLSocket.accept(), if the SSL handshake failed on ↵Antoine Pitrou2013-05-061-11/+15
| | | | | | the new socket, the socket would linger indefinitely. Thanks to Peter Saveliev for reporting.
* Issue #17805: Add AsyncResult alias for ApplyResultRichard Oudkerk2013-05-061-0/+2
|
* Issue17883: Update to assertIn to see why test fails on one buildbot.Terry Jan Reedy2013-05-061-1/+1
|
* #7855: Add tests for ctypes/winreg for issues found in IronPython. Initial ↵Ezio Melotti2013-05-043-1/+49
| | | | patch by Dino Viehland.
* Issue #16316: mimetypes now recognizes the .xz and .txz (.tar.xz) extensions.Serhiy Storchaka2013-05-042-0/+4
|
* Issue #15535: Fix regression in pickling of named tuples.Raymond Hettinger2013-05-032-3/+1
|
* Issue #17712: Fix test_gdb failures on Ubuntu 13.04.Antoine Pitrou2013-04-301-22/+24
|
* Issue #17843: Remove bz2 test data that triggers antivirus warnings.Nadeem Vawda2013-04-282-7/+6
|
* Issue #17842. Added base64 module tests with bytearray arguments.Serhiy Storchaka2013-04-281-0/+26
|
* Issue #17835: Fix test_io when the default OS pipe buffer size is larger ↵Antoine Pitrou2013-04-242-2/+11
| | | | than one million bytes.
* Ensure that plistlib doesn't corrupt deeply nested datastructuresRonald Oussoren2013-04-232-2/+14
| | | | | | | Without this changeset plistlib would write empty tags for plistlib.Data objects in deeply nested datastructures. Fixes #17353
* Issue #11714: Use 'with' statements to assure a Semaphore releases aSerhiy Storchaka2013-04-221-22/+20
| | | | condition variable. Original patch by Thomas Rachel.
* Issue #17795: Reverted backwards-incompatible change in SysLogHandler with ↵Vinay Sajip2013-04-221-6/+29
| | | | Unix domain sockets.
* #17065: Use process-unique key for winreg test.R David Murray2013-04-211-2/+5
| | | | Patch by Jeremy Kloth.
* Issue #17555: Fix ForkAwareThreadLock so that size of after forkRichard Oudkerk2013-04-172-2/+35
| | | | registry does not grow exponentially with generation of process.
* #14735: Update IDLE docs to omit "Control-z on Windows".Roger Serwy2013-04-171-2/+1
|
* Issue #17710: Fix cPickle raising a SystemError on bogus input.Antoine Pitrou2013-04-152-1/+3
|
* #17341: Include name in re error message about invalid group name.R David Murray2013-04-142-2/+15
| | | | Patch by Jason Michalski.
* #2118: clarify smtplib exception documentation.R David Murray2013-04-131-2/+3
|
* null mergeAndrew Svetlov2013-04-132-38/+1
|\
| * Revert changes for #13355 by request from Raymond HettingerAndrew Svetlov2013-04-132-38/+1
| |
* | - Issue #17536: Add to webbrowser's browser list: xdg-open, gvfs-open,doko@ubuntu.com2013-04-131-0/+31
|/ | | | www-browser, x-www-browser, chromium browsers, iceweasel, iceape.
* Issue #16447: Fix potential segfault when setting __name__ on a class.Mark Dickinson2013-04-131-0/+14
|
* Issue #17656: Fix extraction of zip files with unicode member paths.Serhiy Storchaka2013-04-132-2/+24
|
* Issue #13355: Raise ValueError on random.triangular call with invalid params.Andrew Svetlov2013-04-122-1/+38
| | | | Initial patch by Yuriy Senko.
* #17585: Fixed IDLE regression. Now closes when using exit() or quit().Roger Serwy2013-04-121-0/+3
|
* #17657: Show full Tk version in IDLE's about dialog.Roger Serwy2013-04-091-6/+1
| | | | Patch by Todd Rovito.
* Close #17666: Fix reading gzip files with an extra field.Serhiy Storchaka2013-04-082-1/+9
|
* - Issue #13150, #17512: sysconfig no longer parses the Makefile and config.hdoko@ubuntu.com2013-04-084-78/+80
| | | | | files when imported, instead doing it at build time. This makes importing sysconfig faster and reduces Python startup time by 20%.
* #17613: Prevent traceback when removing syntax colorizer in IDLE.Roger Serwy2013-04-071-0/+4
|
* #1207589: Backwards-compatibility patch for right-click menu in IDLE.Roger Serwy2013-04-071-2/+8
|
* #16887: IDLE now accepts Cancel in tabify/untabify dialog box.Roger Serwy2013-04-071-1/+3
|
* Revert a premature patch for issue #14010 (changeset d17d10c84d27).Serhiy Storchaka2013-04-061-134/+1
|
* Issue #14010: Fix a crash when iterating or deleting deeply nested filtersSerhiy Storchaka2013-04-061-1/+134
| | | | in itertools module (i.e. itertools.izip(), itertools.chain(), etc).
* merge 2.7.4 release branchBenjamin Peterson2013-04-063-3/+3
|\
| * change version to 2.7.4v2.7.4Benjamin Peterson2013-04-062-2/+2
| |
| * update pydoc-topicsBenjamin Peterson2013-04-061-1/+1
| |
* | merge 2.7.4 release branchBenjamin Peterson2013-04-041-0/+1
|\ \ | |/
| * close search and replace dialog after it is used (closes #17625)Benjamin Peterson2013-04-041-0/+1
| |
* | #14254: IDLE now handles readline correctly across shell restarts.Roger Serwy2013-04-031-2/+12
| |
* | #17614: IDLE no longer raises exception when quickly closing a file.Roger Serwy2013-04-031-1/+5
| |
* | #13163: fix names of _get_socket argsR David Murray2013-04-021-2/+2
| | | | | | | | | | | | | | This was already done in Python3, but having it wrong leads to incorrect debug output, so it seems worth fixing in 2.7 as well. Patch by Victor Terrón.