Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | | | PyUnicode -> PyString and PyLong -> PyInt | Benjamin Peterson | 2014-08-20 | 1 | -4/+4 | |
| | | | ||||||
* | | | backport many ssl features from Python 3 (closes #21308) | Benjamin Peterson | 2014-08-20 | 26 | -1458/+9540 | |
| | | | | | | | | | | | | | | | 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 Kumaran | 2014-08-20 | 3 | -18/+87 | |
|/ / | | | | | | | 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 | 3 | -1/+28 | |
| | | ||||||
* | | 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 | 3 | -15/+40 | |
| | | ||||||
* | | Issue #22201: Command-line interface of the zipfile module now correctly | Serhiy Storchaka | 2014-08-17 | 2 | -12/+7 | |
| | | | | | | | | extracts ZIP files with directory entries. Patch by Ryan Wilson. | |||||
* | | Removed useless Py_LIMITED_API checks. | Serhiy Storchaka | 2014-08-17 | 3 | -6/+0 | |
| | | | | | | | | | | Support for Py_LIMITED_API was introduced in Python 3.2. Thanks Arfrever Frehtes Taifersar Arahesis. | |||||
* | | backout changeset e0510a3bdf8f - due to buildbot failures. Ref: Issue #8797 | Senthil Kumaran | 2014-08-16 | 3 | -90/+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 | 3 | -18/+90 | |
| | | | | | | | | 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 | |
| | | ||||||
* | | Issue #22193: Added private function _PySys_GetSizeOf() needed to implement | Serhiy Storchaka | 2014-08-14 | 2 | -33/+46 | |
| | | | | | | | | some __sizeof__() methods. | |||||
* | | 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 | 3 | -11/+82 | |
| | | | | | | | | | | | | 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 | 2 | -3/+11 | |
| | | | | | | | | AIX. Based on patch by Delhallt. | |||||
* | | Issue #22178: Fix the date of the Windows epoch (Jan 1, 1601). | Zachary Ware | 2014-08-11 | 1 | -1/+1 | |
| | | ||||||
* | | Issue #22174: Clean-up grammar and ambiguities in property() docs. | Raymond Hettinger | 2014-08-10 | 2 | -7/+14 | |
| | | ||||||
* | | - Issue #22176: Update the ctypes module's libffi to v3.1. This release | doko@ubuntu.com | 2014-08-10 | 136 | -13677/+28336 | |
| | | | | | | | | | | adds support for the Linux AArch64 and POWERPC ELF ABIv2 little endian architectures. | |||||
* | | remove casts | Benjamin Peterson | 2014-08-10 | 1 | -4/+4 | |
| | | ||||||
* | | test for 2 arg exec case | Benjamin Peterson | 2014-08-10 | 1 | -0/+5 | |
| | | ||||||
* | | restore runtime exec test (#21591) | Benjamin Peterson | 2014-08-10 | 1 | -0/+9 | |
| | | ||||||
* | | Issue #14105: Stop removing breakpoints from Idle editors. | Terry Jan Reedy | 2014-08-09 | 2 | -1/+10 | |
| | | | | | | | | Move BREAK tag configuration to PyShellEditorWindow. | |||||
* | | Issue #22160: Update OpenSSL to 1.0.1i for the Windows build. | Zachary Ware | 2014-08-07 | 3 | -3/+9 | |
| | | ||||||
* | | #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 | 2 | -1/+4 | |
| | | | | | | | | on 64-bit systems. | |||||
* | | Issue #21975: Fixed crash when using uninitialized sqlite3.Row (in particular | Serhiy Storchaka | 2014-08-06 | 2 | -11/+21 | |
| | | | | | | | | | | when unpickling pickled sqlite3.Row). sqlite3.Row is now initialized in the __new__() method. | |||||
* | | Issue #22130: Corrected fileConfig() documentation. | Vinay Sajip | 2014-08-05 | 1 | -1/+1 | |
| | | ||||||
* | | #21928: clarify functools.wraps docs. | Ezio Melotti | 2014-08-05 | 1 | -3/+4 | |
| | | ||||||
* | | Issue #16037: HTTPMessage.readheaders() raises an HTTPException when more | Berker Peksag | 2014-08-05 | 3 | -0/+16 | |
|/ | | | | | | than 100 headers are read. Patch by Jyrki Pulliainen and Daniel Eriksson. | |||||
* | #18034: update FAQ to suggest importlib.import_module instead of __import__. ↵ | Ezio Melotti | 2014-08-04 | 2 | -12/+4 | |
| | | | | Patch by Wouter van Heyst. | |||||
* | 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 #13540: Merge commits | Jason R. Coombs | 2014-08-03 | 1 | -19/+53 | |
|\ | ||||||
| * | Issue #13540: Update references to Action class to match syntax used for ↵ | Jason R. Coombs | 2014-08-03 | 1 | -2/+2 | |
| | | | | | | | | other classes in this file. | |||||
| * | Issue #13540: Removed redundant documentation about Action instance ↵ | Jason R. Coombs | 2014-07-20 | 1 | -49/+26 | |
| | | | | | | | | attributes. Updated example and documentation per recommendations by Steven Bethard in msg149524. | |||||
| * | Issue #13540: Expanded argparse documents to clarify the action API | Jason R. Coombs | 2011-12-14 | 1 | -19/+76 | |
| | | ||||||
* | | Fix typo in comment. | Raymond Hettinger | 2014-08-02 | 1 | -1/+1 | |
| | | ||||||
* | | - update config.guess and config.sub to support openrisc. | doko@ubuntu.com | 2014-08-01 | 2 | -175/+40 | |
| | | ||||||
* | | Issue #21580: Now Tkinter correctly handles binary "data" and "maskdata" | Serhiy Storchaka | 2014-07-31 | 4 | -7/+39 | |
| | | | | | | | | | | | | 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 | 3 | -9/+124 | |
| | | ||||||
* | | Issue #21591: add test for qualified exec in tuple form. | Robert Jordens | 2014-07-29 | 2 | -0/+17 | |
| | | ||||||
* | | Issue #21591: Handle exec backwards compatibility in the AST builder. | Dirkjan Ochtman | 2014-07-29 | 3 | -9/+15 | |
| | | | | | | | | | | | | | | Instead of deferring until runtime. This makes sure we hit the right conditions in dealing with unqualified exec statements. Reviewed by Victor Stinner. Test follows in a later commit. | |||||
* | | Issue #19612: subprocess.communicate() now also ignores EINVAL when using at | Victor Stinner | 2014-07-28 | 2 | -1/+12 | |
| | | | | | | | | 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). | |||||
* | | Modernize turtledemo with conditional expressions; remove duplicate line. | Terry Jan Reedy | 2014-07-27 | 1 | -19/+6 | |
| | | ||||||
* | | Fix repr(_socket.socket) on Windows 64-bit: don't fail with OverflowError | Victor Stinner | 2014-07-26 | 3 | -2/+30 | |
| | | | | | | | | on closed socket. |