Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
| * | | Fix Issue #8797: Raise HTTPError on failed Basic Authentication immediately. ↵ | Senthil Kumaran | 2014-08-20 | 2 | -18/+84 | |
| |/ | | | | | | | Initial patch by Sam Bull. | |||||
| * | Idle ColorDelegator: remove special case code for 'as' in import statements. | Terry Jan Reedy | 2014-08-19 | 1 | -17/+0 | |
| | | | | | | | | 'As' became a full keyword when with statements were added in 2.5/2.6. | |||||
| * | Fixed typo. | Serhiy Storchaka | 2014-08-19 | 1 | -2/+2 | |
| | | ||||||
| * | Issue #15696: Add a __sizeof__ implementation for mmap objects on Windows. | Serhiy Storchaka | 2014-08-19 | 1 | -1/+10 | |
| | | ||||||
| * | Clean up test_user_command. | Serhiy Storchaka | 2014-08-18 | 1 | -20/+19 | |
| | | ||||||
| * | Issue #22068: Avoided reference loops with Variables and Fonts in Tkinter. | Serhiy Storchaka | 2014-08-17 | 2 | -15/+38 | |
| | | ||||||
| * | Issue #22201: Command-line interface of the zipfile module now correctly | Serhiy Storchaka | 2014-08-17 | 1 | -12/+1 | |
| | | | | | | | | extracts ZIP files with directory entries. Patch by Ryan Wilson. | |||||
| * | backout changeset e0510a3bdf8f - due to buildbot failures. Ref: Issue #8797 | Senthil Kumaran | 2014-08-16 | 2 | -87/+18 | |
| | | ||||||
| * | Closes #22188: test_gdb now runs gdb with -nx: "Do not execute commands from | Victor Stinner | 2014-08-16 | 1 | -4/+6 | |
| | | | | | | | | any .gdbinit initialization files". | |||||
| * | Fix Issue #8797: Raise HTTPError on failed Basic Authentication immediately. ↵ | Senthil Kumaran | 2014-08-16 | 2 | -18/+87 | |
| | | | | | | | | Initial patch by Sam Bull. | |||||
| * | Issue #17390: Adjust Editor window title. Remove 'Python', move version to end. | Terry Jan Reedy | 2014-08-15 | 1 | -4/+5 | |
| | | ||||||
| * | Decreased memory requirements of new tests added in issue21448. | Serhiy Storchaka | 2014-08-12 | 1 | -1/+2 | |
| | | ||||||
| * | Issue #21448: Fixed FeedParser feed() to avoid O(N**2) behavior when parsing ↵ | Serhiy Storchaka | 2014-08-12 | 2 | -11/+79 | |
| | | | | | | | | | | | | long line. Original patch by Raymond Hettinger. | |||||
| * | Issue #17923: glob() patterns ending with a slash no longer match non-dirs on | Serhiy Storchaka | 2014-08-12 | 1 | -3/+8 | |
| | | | | | | | | AIX. Based on patch by Delhallt. | |||||
| * | test for 2 arg exec case | Benjamin Peterson | 2014-08-10 | 1 | -0/+5 | |
| | | ||||||
| * | Issue #14105: Stop removing breakpoints from Idle editors. | Terry Jan Reedy | 2014-08-09 | 2 | -1/+10 | |
| | | | | | | | | Move BREAK tag configuration to PyShellEditorWindow. | |||||
| * | #22092: use absolute imports in unittest tests. Patch by Vajrasky Kok. | Ezio Melotti | 2014-08-07 | 7 | -5/+8 | |
| | | ||||||
| * | Issue #18004: test_overflow in test_list by mistake consumed 40 GiB of memory | Serhiy Storchaka | 2014-08-06 | 1 | -1/+1 | |
| | | | | | | | | on 64-bit systems. | |||||
| * | Issue #16037: HTTPMessage.readheaders() raises an HTTPException when more | Berker Peksag | 2014-08-05 | 2 | -0/+13 | |
| | | | | | | | | | | | | than 100 headers are read. Patch by Jyrki Pulliainen and Daniel Eriksson. | |||||
* | | Issue #22435: Fix a file descriptor leak when SocketServer bind fails. | Charles-François Natali | 2014-10-13 | 2 | -2/+16 | |
|/ | ||||||
* | PEP 8 spacing in idlelib.configDialog: mostly a = b in assignments, | Terry Jan Reedy | 2014-08-04 | 1 | -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 Storchaka | 2014-07-31 | 2 | -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 Reedy | 2014-07-30 | 1 | -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 Storchaka | 2014-07-30 | 1 | -0/+1 | |
| | ||||||
* | Issue #22023: Fix %S, %R and %V formats of PyUnicode_FromFormat(). | Victor Stinner | 2014-07-29 | 1 | -0/+112 | |
| | ||||||
* | Issue #21591: add test for qualified exec in tuple form. | Robert Jordens | 2014-07-29 | 1 | -0/+16 | |
| | ||||||
* | Issue #19612: subprocess.communicate() now also ignores EINVAL when using at | Victor Stinner | 2014-07-28 | 1 | -1/+9 | |
| | | | | least two pipes. | |||||
* | Reduce unnecessary 2.7 versus 3.4+ differences in idlelib/configDialog.py. | Terry Jan Reedy | 2014-07-27 | 1 | -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 OverflowError | Victor Stinner | 2014-07-26 | 1 | -0/+18 | |
| | | | | on closed socket. | |||||
* | Issue #19875: Fix random test_getsockaddrarg() failure. | Charles-François Natali | 2014-07-26 | 1 | -9/+17 | |
| | ||||||
* | Issue #21990: Cleanup unnecessary inner class definition in saxutils. | Raymond Hettinger | 2014-07-25 | 1 | -5/+8 | |
| | ||||||
* | Issue #22061: Add deprecation warnings in empty obsolete methods. | Serhiy Storchaka | 2014-07-25 | 1 | -2/+9 | |
| | ||||||
* | Issue #16133: The asynchat.async_chat.handle_read() method now ignores | Victor Stinner | 2014-07-24 | 2 | -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 a | Serhiy Storchaka | 2014-07-24 | 2 | -1/+36 | |
| | | | | different type. | |||||
* | Issue #19884: readline: Disable the meta modifier key if stdout is not a | Victor Stinner | 2014-07-24 | 1 | -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 Ware | 2014-07-23 | 2 | -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 Storchaka | 2014-07-23 | 1 | -0/+18 | |
| | | | | from 6ae34a948cb4. | |||||
* | Fixed bugs in reprs of CookieJar and multiprocessing.dummy.Value. | Serhiy Storchaka | 2014-07-22 | 2 | -3/+3 | |
| | ||||||
* | Backout 308f3c1e36d3. This change (issue21044) does not need to be merged on | Serhiy Storchaka | 2014-07-22 | 2 | -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 Pitrou | 2014-07-21 | 1 | -6/+10 | |
| | | | | Thanks to William Orr. | |||||
* | Issue #21868: Prevent turtle crash due to invalid undo buffer size. | Raymond Hettinger | 2014-07-21 | 1 | -1/+1 | |
| | ||||||
* | Issue 21044: tarfile.open() now handles fileobj with an integer 'name' | Serhiy Storchaka | 2014-07-16 | 2 | -6/+35 | |
| | | | | attribute. Based on patch by Martin Panter. | |||||
* | Add helpers for testing unicode disabled builds. | Serhiy Storchaka | 2014-07-16 | 1 | -1/+6 | |
| | ||||||
* | Issue #21982: Add minimal unittest for configDialog with 46% coverage. | Terry Jan Reedy | 2014-07-15 | 2 | -3/+41 | |
| | ||||||
* | Issue #17506: Synchronize Misc/NEWS and idlelib/NEWS.txt for 2.7. | Terry Jan Reedy | 2014-07-14 | 1 | -19/+279 | |
| | ||||||
* | Issue #18592: Method return signature changes made to SearchDialogBase for | Terry Jan Reedy | 2014-07-13 | 4 | -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 Deily | 2014-07-13 | 2 | -5/+19 | |
| | | | | broken by the fix for security issue #19435. Patch by Zach Byrne. | |||||
* | Issue #18592: Make unittest for SearchDialogBase work on all tk versions. | Terry Jan Reedy | 2014-07-11 | 1 | -4/+4 | |
| | ||||||
* | #21940: Add unittest for WidgetRedirector. Initial patch by Saimadhav Heblikar. | Terry Jan Reedy | 2014-07-11 | 3 | -12/+145 | |
| | ||||||
* | Issue #21940: add docstrings to idlelib.WidgetRedirector. | Terry Jan Reedy | 2014-07-10 | 1 | -18/+59 | |
| |