summaryrefslogtreecommitdiffstats
path: root/Lib
Commit message (Collapse)AuthorAgeFilesLines
* Issue #1730136: Fix backported exception name.Ned Deily2014-08-211-1/+1
|
* expect socket.error instead of the py3ism OSErrorBenjamin Peterson2014-08-201-1/+1
|
* allow any socket error for rude shutdown testBenjamin Peterson2014-08-201-1/+1
|
* backport many ssl features from Python 3 (closes #21308)Benjamin Peterson2014-08-2019-809/+3636
| | | | | A contribution of Alex Gaynor and David Reid with the generous support of Rackspace. May God have mercy on their souls.
* Fix Issue #8797: Raise HTTPError on failed Basic Authentication immediately. ↵Senthil Kumaran2014-08-202-18/+84
| | | | Initial patch by Sam Bull.
* Idle ColorDelegator: remove special case code for 'as' in import statements.Terry Jan Reedy2014-08-191-17/+0
| | | | 'As' became a full keyword when with statements were added in 2.5/2.6.
* Fixed typo.Serhiy Storchaka2014-08-191-2/+2
|
* Issue #15696: Add a __sizeof__ implementation for mmap objects on Windows.Serhiy Storchaka2014-08-191-1/+10
|
* Clean up test_user_command.Serhiy Storchaka2014-08-181-20/+19
|
* Issue #22068: Avoided reference loops with Variables and Fonts in Tkinter.Serhiy Storchaka2014-08-172-15/+38
|
* Issue #22201: Command-line interface of the zipfile module now correctlySerhiy Storchaka2014-08-171-12/+1
| | | | extracts ZIP files with directory entries. Patch by Ryan Wilson.
* backout changeset e0510a3bdf8f - due to buildbot failures. Ref: Issue #8797Senthil Kumaran2014-08-162-87/+18
|
* Closes #22188: test_gdb now runs gdb with -nx: "Do not execute commands fromVictor Stinner2014-08-161-4/+6
| | | | any .gdbinit initialization files".
* Fix Issue #8797: Raise HTTPError on failed Basic Authentication immediately. ↵Senthil Kumaran2014-08-162-18/+87
| | | | Initial patch by Sam Bull.
* Issue #17390: Adjust Editor window title. Remove 'Python', move version to end.Terry Jan Reedy2014-08-151-4/+5
|
* Decreased memory requirements of new tests added in issue21448.Serhiy Storchaka2014-08-121-1/+2
|
* Issue #21448: Fixed FeedParser feed() to avoid O(N**2) behavior when parsing ↵Serhiy Storchaka2014-08-122-11/+79
| | | | | | long line. Original patch by Raymond Hettinger.
* Issue #17923: glob() patterns ending with a slash no longer match non-dirs onSerhiy Storchaka2014-08-121-3/+8
| | | | AIX. Based on patch by Delhallt.
* test for 2 arg exec caseBenjamin Peterson2014-08-101-0/+5
|
* Issue #14105: Stop removing breakpoints from Idle editors.Terry Jan Reedy2014-08-092-1/+10
| | | | Move BREAK tag configuration to PyShellEditorWindow.
* #22092: use absolute imports in unittest tests. Patch by Vajrasky Kok.Ezio Melotti2014-08-077-5/+8
|
* Issue #18004: test_overflow in test_list by mistake consumed 40 GiB of memorySerhiy Storchaka2014-08-061-1/+1
| | | | on 64-bit systems.
* Issue #16037: HTTPMessage.readheaders() raises an HTTPException when moreBerker Peksag2014-08-052-0/+13
| | | | | | than 100 headers are read. Patch by Jyrki Pulliainen and Daniel Eriksson.
* PEP 8 spacing in idlelib.configDialog: mostly a = b in assignments,Terry Jan Reedy2014-08-041-565/+603
| | | | a, b in arg lists, and hanging indents for long arg lists.
* Issue #21580: Now Tkinter correctly handles binary "data" and "maskdata"Serhiy Storchaka2014-07-312-7/+8
| | | | | | configure options of tkinter.PhotoImage. Added private Tkapp method _createbytearray().
* Issue #22068: Don't create self reference cycles in idlelib.ConfigDialog.Terry Jan Reedy2014-07-301-29/+38
| | | | In 2.7, these become leaks and cause test_gc to fail.
* Issue #21951: Temporary skip crashing test_user_command on AIX.Serhiy Storchaka2014-07-301-0/+1
|
* Issue #22023: Fix %S, %R and %V formats of PyUnicode_FromFormat().Victor Stinner2014-07-291-0/+112
|
* Issue #21591: add test for qualified exec in tuple form.Robert Jordens2014-07-291-0/+16
|
* Issue #19612: subprocess.communicate() now also ignores EINVAL when using atVictor Stinner2014-07-281-1/+9
| | | | least two pipes.
* Reduce unnecessary 2.7 versus 3.4+ differences in idlelib/configDialog.py.Terry Jan Reedy2014-07-271-29/+28
| | | | | | | Only change 2.7 version. Remove ".keys()" from "x in y.keys()" (leave .keys() elsewhere alone). Change "string.join" to "' '.join" (and string.join(s, ';') to ';'.join(s)). Change spacing to match 3.4 (will later make spacing changes to both).
* Fix repr(_socket.socket) on Windows 64-bit: don't fail with OverflowErrorVictor Stinner2014-07-261-0/+18
| | | | on closed socket.
* Issue #19875: Fix random test_getsockaddrarg() failure.Charles-François Natali2014-07-261-9/+17
|
* Issue #21990: Cleanup unnecessary inner class definition in saxutils.Raymond Hettinger2014-07-251-5/+8
|
* Issue #22061: Add deprecation warnings in empty obsolete methods.Serhiy Storchaka2014-07-251-2/+9
|
* Issue #16133: The asynchat.async_chat.handle_read() method now ignoresVictor Stinner2014-07-242-2/+39
| | | | | socket.error() exceptions with blocking I/O errors: EAGAIN, EALREADY, EINPROGRESS, or EWOULDBLOCK. Initial patch written by Xavier de Gaye.
* Issue #1730136: Fix comparison between a tk Font object and an object of aSerhiy Storchaka2014-07-242-1/+36
| | | | different type.
* Issue #19884: readline: Disable the meta modifier key if stdout is not aVictor Stinner2014-07-241-5/+17
| | | | | | terminal to not write the ANSI sequence "\033[1034h" into stdout. This sequence is used on some terminal (ex: TERM=xterm-256color") to enable support of 8 bit characters.
* Issue #19493: Fix two uses of ctypes.test.requires (it's not a decorator)Zachary Ware2014-07-232-2/+5
| | | | | and skip test_win32.FunctionCallTestCase.test_SEH when Python was compiled in debug configuration or by a non-MSC compiler.
* Issue #6167: Backported tests for Scrollbar.activate() and Scrollbar.set()Serhiy Storchaka2014-07-231-0/+18
| | | | from 6ae34a948cb4.
* Fixed bugs in reprs of CookieJar and multiprocessing.dummy.Value.Serhiy Storchaka2014-07-222-3/+3
|
* Backout 308f3c1e36d3. This change (issue21044) does not need to be merged onSerhiy Storchaka2014-07-222-35/+6
| | | | 2.7, as the os.fdopen sets the name attribute to '<fdopen>' and not to the fd.
* Issue #21976: Fix test_ssl to accept LibreSSL version strings.Antoine Pitrou2014-07-211-6/+10
| | | | Thanks to William Orr.
* Issue #21868: Prevent turtle crash due to invalid undo buffer size.Raymond Hettinger2014-07-211-1/+1
|
* Issue 21044: tarfile.open() now handles fileobj with an integer 'name'Serhiy Storchaka2014-07-162-6/+35
| | | | attribute. Based on patch by Martin Panter.
* Add helpers for testing unicode disabled builds.Serhiy Storchaka2014-07-161-1/+6
|
* Issue #21982: Add minimal unittest for configDialog with 46% coverage.Terry Jan Reedy2014-07-152-3/+41
|
* Issue #17506: Synchronize Misc/NEWS and idlelib/NEWS.txt for 2.7.Terry Jan Reedy2014-07-141-19/+279
|
* Issue #18592: Method return signature changes made to SearchDialogBase forTerry Jan Reedy2014-07-134-19/+35
| | | | | test purposes are now reflected in GrepDialog and ReplaceDialog. Docstrings are improved. Initial patch by Saimadhav Heblikar
* Issue #21323: Fix CGIHTTPServer to again handle scripts in CGI subdirectories,Ned Deily2014-07-132-5/+19
| | | | broken by the fix for security issue #19435. Patch by Zach Byrne.