summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* | | PyUnicode -> PyString and PyLong -> PyIntBenjamin Peterson2014-08-201-4/+4
| | |
* | | backport many ssl features from Python 3 (closes #21308)Benjamin Peterson2014-08-2026-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 Kumaran2014-08-203-18/+87
|/ / | | | | | | 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-193-1/+28
| |
* | 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-173-15/+40
| |
* | Issue #22201: Command-line interface of the zipfile module now correctlySerhiy Storchaka2014-08-172-12/+7
| | | | | | | | extracts ZIP files with directory entries. Patch by Ryan Wilson.
* | Removed useless Py_LIMITED_API checks.Serhiy Storchaka2014-08-173-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 #8797Senthil Kumaran2014-08-163-90/+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-163-18/+90
| | | | | | | | Initial patch by Sam Bull.
* | Issue #17390: Adjust Editor window title. Remove 'Python', move version to end.Terry Jan Reedy2014-08-151-4/+5
| |
* | Issue #22193: Added private function _PySys_GetSizeOf() needed to implementSerhiy Storchaka2014-08-142-33/+46
| | | | | | | | some __sizeof__() methods.
* | 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-123-11/+82
| | | | | | | | | | | | long line. Original patch by Raymond Hettinger.
* | Issue #17923: glob() patterns ending with a slash no longer match non-dirs onSerhiy Storchaka2014-08-122-3/+11
| | | | | | | | AIX. Based on patch by Delhallt.
* | Issue #22178: Fix the date of the Windows epoch (Jan 1, 1601).Zachary Ware2014-08-111-1/+1
| |
* | Issue #22174: Clean-up grammar and ambiguities in property() docs.Raymond Hettinger2014-08-102-7/+14
| |
* | - Issue #22176: Update the ctypes module's libffi to v3.1. This releasedoko@ubuntu.com2014-08-10136-13677/+28336
| | | | | | | | | | adds support for the Linux AArch64 and POWERPC ELF ABIv2 little endian architectures.
* | remove castsBenjamin Peterson2014-08-101-4/+4
| |
* | test for 2 arg exec caseBenjamin Peterson2014-08-101-0/+5
| |
* | restore runtime exec test (#21591)Benjamin Peterson2014-08-101-0/+9
| |
* | Issue #14105: Stop removing breakpoints from Idle editors.Terry Jan Reedy2014-08-092-1/+10
| | | | | | | | Move BREAK tag configuration to PyShellEditorWindow.
* | Issue #22160: Update OpenSSL to 1.0.1i for the Windows build.Zachary Ware2014-08-073-3/+9
| |
* | #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-062-1/+4
| | | | | | | | on 64-bit systems.
* | Issue #21975: Fixed crash when using uninitialized sqlite3.Row (in particularSerhiy Storchaka2014-08-062-11/+21
| | | | | | | | | | when unpickling pickled sqlite3.Row). sqlite3.Row is now initialized in the __new__() method.
* | Issue #22130: Corrected fileConfig() documentation.Vinay Sajip2014-08-051-1/+1
| |
* | #21928: clarify functools.wraps docs.Ezio Melotti2014-08-051-3/+4
| |
* | Issue #16037: HTTPMessage.readheaders() raises an HTTPException when moreBerker Peksag2014-08-053-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 Melotti2014-08-042-12/+4
| | | | Patch by Wouter van Heyst.
* 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 #13540: Merge commitsJason R. Coombs2014-08-031-19/+53
|\
| * Issue #13540: Update references to Action class to match syntax used for ↵Jason R. Coombs2014-08-031-2/+2
| | | | | | | | other classes in this file.
| * Issue #13540: Removed redundant documentation about Action instance ↵Jason R. Coombs2014-07-201-49/+26
| | | | | | | | attributes. Updated example and documentation per recommendations by Steven Bethard in msg149524.
| * Issue #13540: Expanded argparse documents to clarify the action APIJason R. Coombs2011-12-141-19/+76
| |
* | Fix typo in comment.Raymond Hettinger2014-08-021-1/+1
| |
* | - update config.guess and config.sub to support openrisc.doko@ubuntu.com2014-08-012-175/+40
| |
* | Issue #21580: Now Tkinter correctly handles binary "data" and "maskdata"Serhiy Storchaka2014-07-314-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 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-293-9/+124
| |
* | Issue #21591: add test for qualified exec in tuple form.Robert Jordens2014-07-292-0/+17
| |
* | Issue #21591: Handle exec backwards compatibility in the AST builder.Dirkjan Ochtman2014-07-293-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 atVictor Stinner2014-07-282-1/+12
| | | | | | | | 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).
* | Modernize turtledemo with conditional expressions; remove duplicate line.Terry Jan Reedy2014-07-271-19/+6
| |
* | Fix repr(_socket.socket) on Windows 64-bit: don't fail with OverflowErrorVictor Stinner2014-07-263-2/+30
| | | | | | | | on closed socket.