summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
| * | | Update pydoc topics for 3.6.0a2Ned Deily2016-06-131-80/+122
| | | |
* | | | Issue #22636: Merge ctypes.util shell injection fixes from 3.5Martin Panter2016-06-143-44/+85
|\ \ \ \ | | |/ / | |/| |
| * | | Issue #22636: avoid using a shell in the ctypes.util moduleMartin Panter2016-06-143-44/+85
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Replace os.popen() with subprocess.Popen. Based on patch by Victor Stinner. If the "gcc", "cc" or "objdump" command is not available, the code was supposed to raise an OSError exception. But there was a bug in the code. The shell code returns the exit code 10 if the required command is missing, and the code tries to check for the status 10. The problem is that os.popen() doesn't return the exit code directly, but a status which should be processed by os.WIFEXITED() and os.WEXITSTATUS(). In practice, the exception was never raised. The OSError exception was not documented and ctypes.util.find_library() is expected to return None if the library is not found.
* | | | Issue #16182: Merge readline locale fix from 3.5Martin Panter2016-06-143-44/+191
|\ \ \ \ | |/ / /
| * | | Issue #16182: Fix readline begidx, endidx, and use locale encodingMartin Panter2016-06-143-42/+235
| | | | | | | | | | | | | | | | Based on patch by Serhiy Storchaka.
* | | | Issue #17500: Remove merge conflict scar tissueMartin Panter2016-06-141-1/+0
| | | |
* | | | Issue #27310: Fix IDLE.app failure to launch on OS X due to vestigial import.Ned Deily2016-06-142-2/+11
|\ \ \ \ | |/ / /
| * | | Issue #27310: remove vestigial import in IDLE.appNed Deily2016-06-141-2/+0
| | | |
* | | | Issue #27136: Merge test_asyncio fix from 3.5Martin Panter2016-06-131-4/+4
|\ \ \ \ | |/ / /
| * | | Issue #27136: Change test to use ::1 for better OS X Tiger compatibilityMartin Panter2016-06-131-4/+4
| | | |
* | | | Issue #27306: Merge from 3.5Berker Peksag2016-06-131-7/+7
|\ \ \ \ | |/ / /
| * | | Issue #27306: Fix typo in tarfile documentationBerker Peksag2016-06-131-7/+7
| | | | | | | | | | | | | | | | Patch by Gareth Rees.
* | | | Merge from 3.5Berker Peksag2016-06-133-13/+6
|\ \ \ \ | |/ / / | | / / | |/ / |/| |
| * | Replace more boilerplate code with modern unittest features in sqlite3 testsBerker Peksag2016-06-133-13/+6
| | |
* | | Merge the 3.4.5rc1 tag all the way into default (3.6).Larry Hastings2016-06-131-0/+1
| | |
* | | Forward-merge from 3.5 to default.Larry Hastings2016-06-131-0/+1
|\ \ \ | |/ /
| * | Forward-merge from 3.4 to 3.5.Larry Hastings2016-06-131-0/+1
| |\ \ | | |/
| | * Added tag v3.4.5rc1 for changeset 3631bb4a2490Larry Hastings2016-06-121-0/+1
| | |
| | * Release bump for 3.4.5rc1.v3.4.5rc1Larry Hastings2016-06-123-9/+9
| | |
| | * Regenerate pydoc topics for 3.4.5rc1.Larry Hastings2016-06-121-2/+2
| | |
| * | Merge 3.5.2rc1 with current 3.5 branch.Larry Hastings2016-06-1328-424/+370
| |\ \
| * | | Post-release fixups for Python 3.5.2rc1.Larry Hastings2016-06-132-2/+14
| | | |
| * | | Added tag v3.5.2rc1 for changeset 68feec6488b2Larry Hastings2016-06-121-0/+1
| | | |
| * | | Updated header for README for 3.5.2rc1.v3.5.2rc1Larry Hastings2016-06-121-2/+2
| | | |
| * | | Release bump for 3.5.2rc1.Larry Hastings2016-06-123-6/+6
| | | |
| * | | Regenerated pydoc topics for 3.5.2rc1.Larry Hastings2016-06-121-20/+20
| | | |
* | | | - Comment out socket (SO_REUSEPORT) and posix (O_SHLOCK, O_EXLOCK) constantsdoko@ubuntu.com2016-06-133-0/+8
| | | | | | | | | | | | | | | | | | | | exposed on the API which are not implemented on GNU/Hurd. They would not work at runtime anyway.
* | | | Issue #27025: Generated names for Tkinter widgets are now more meanfulSerhiy Storchaka2016-06-132-4/+20
| | | | | | | | | | | | | | | | and recognizirable.
* | | | WhitespaceTerry Jan Reedy2016-06-131-1/+1
| | | |
* | | | Issue #27163: Add idlelib/IDLE entry to What's New in 3.6.Terry Jan Reedy2016-06-131-0/+10
| | | |
* | | | Issue #27186: Skip scandir(bytes) test with os.name == "nt"Martin Panter2016-06-131-1/+1
| | | |
* | | | Ignore the VS Code config directoryBrett Cannon2016-06-122-0/+2
| | | |
* | | | Issue #27186: add Include/osmodule.h to the proper build rulesBrett Cannon2016-06-123-2/+7
| | | |
* | | | Issue #27239: Continue refactoring idlelib.macosx and adding macosx tests.Terry Jan Reedy2016-06-123-16/+53
| | | |
* | | | Merge from 3.5Berker Peksag2016-06-126-257/+62
|\ \ \ \ | | |/ / | |/| |
| * | | Modernize sqlite3 testsBerker Peksag2016-06-126-257/+62
| | | | | | | | | | | | | | | | | | | | Update current tests that use old pattern with assertRaises to make them more maintainable.
* | | | Issue #27186: skip bytes path test for os.scandir() on WindowsBrett Cannon2016-06-121-0/+1
| | | |
* | | | Merge from 3.5Berker Peksag2016-06-121-1/+1
|\ \ \ \ | |/ / /
| * | | Fix typo in _sqlite/module.hBerker Peksag2016-06-121-1/+1
| | | |
* | | | Issue #27095: Simplified MAKE_FUNCTION and removed MAKE_CLOSURE opcodes.Serhiy Storchaka2016-06-1213-4150/+4090
| | | | | | | | | | | | | | | | Patch by Demur Rumed.
* | | | Comment fixes extracted from patch by Demur Rumed.Serhiy Storchaka2016-06-123-108/+104
| | | |
* | | | Issue #15657: Null merge from 3.5Berker Peksag2016-06-120-0/+0
|\ \ \ \ | |/ / /
| * | | Issue #15657: Delete incorrect statement from PyMethodDef documentationBerker Peksag2016-06-121-3/+2
| | | |
* | | | Issue #27289: Merge from 3.5Berker Peksag2016-06-121-1/+2
|\ \ \ \ | |/ / /
| * | | Issue #27289: Prevent test_urllib2net failures due to EOFError raised by ftplibBerker Peksag2016-06-121-1/+2
| | | |
* | | | Issue #25455: Clean up reference loops created in tests for recursiveSerhiy Storchaka2016-06-121-12/+36
|\ \ \ \ | |/ / / | | | | | | | | functools.partial objects.
| * | | Issue #25455: Clean up reference loops created in tests for recursiveSerhiy Storchaka2016-06-121-12/+36
| | | | | | | | | | | | | | | | functools.partial objects.
* | | | Issue #27190: Merge from 3.5Berker Peksag2016-06-123-0/+13
|\ \ \ \ | |/ / /
| * | | Issue #27190: Raise NotSupportedError if sqlite3 is older than 3.3.1Berker Peksag2016-06-123-0/+13
| | | | | | | | | | | | | | | | Patch by Dave Sawyer.
* | | | Issue #27188: Merge from 3.5Berker Peksag2016-06-122-18/+31
|\ \ \ \ | |/ / /