summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Add versionadded directives for the matmul operator.Berker Peksag2015-03-121-0/+4
|
* Issue #23651: Fix typo in allow_abbrev docs.Berker Peksag2015-03-121-1/+1
| | | | Noticed by Nathan West.
* Issue #23581: Add matmul support to MagicMock.Berker Peksag2015-03-123-1/+14
| | | | Patch by Håkan Lövdahl.
* Issue #20617: Remove unused import in test_ssl.Berker Peksag2015-03-121-1/+0
|\ | | | | | | Patch by Mark Lawrence.
| * Issue #20617: Remove unused import in test_ssl.Berker Peksag2015-03-121-1/+0
| | | | | | | | Patch by Mark Lawrence.
* | Issue #23644, #22038: Move #include <stdatomic.c> inside the extern "C" { ... }Victor Stinner2015-03-121-4/+4
| | | | | | | | block in pyatomic.h
* | Issue #23566: enable(), register(), dump_traceback() and dump_traceback_later()Victor Stinner2015-03-125-78/+172
| | | | | | | | functions of faulthandler now accept file descriptors. Patch by Wei Wu.
* | Merge 3.4 (test_os)Victor Stinner2015-03-121-37/+70
|\ \ | |/
| * Issue #23605: Refactor os.walk() tests to also run them on os.fwalk()Victor Stinner2015-03-121-37/+70
| |
* | Issue #22928: Disabled HTTP header injections in http.client.Serhiy Storchaka2015-03-123-0/+97
|\ \ | |/ | | | | Original patch by Demian Brecht.
| * Issue #22928: Disabled HTTP header injections in http.client.Serhiy Storchaka2015-03-123-0/+97
| | | | | | | | Original patch by Demian Brecht.
* | Issue #23605: os.walk() doesn't need to call entry.is_symlink() if followlinksVictor Stinner2015-03-121-2/+3
| | | | | | | | is True
* | Issue #23192: Fixed generator lambdas. Patch by Bruno Cauet.Serhiy Storchaka2015-03-113-2/+24
|\ \ | |/
| * Issue #23192: Fixed generator lambdas. Patch by Bruno Cauet.Serhiy Storchaka2015-03-114-2/+25
| |
* | Close issue23486: performance boost for enum member lookupEthan Furman2015-03-111-1/+10
| |
* | Issue #23615: Modules bz2, tarfile and tokenize now can be reloaded withSerhiy Storchaka2015-03-115-6/+7
|\ \ | |/ | | | | imp.reload(). Patch by Thomas Kluyver.
| * Issue #23615: Modules bz2, tarfile and tokenize now can be reloaded withSerhiy Storchaka2015-03-115-6/+7
| | | | | | | | imp.reload(). Patch by Thomas Kluyver.
* | Close issue23467: add %r compatibility to bytes and bytearrayEthan Furman2015-03-113-1/+14
| |
* | Removes unused format string insertion in launcher.c.Steve Dower2015-03-111-1/+1
|\ \ | |/
| * Removes unused format string insertion in launcher.c.Steve Dower2015-03-111-1/+1
| |
* | Issue #23629: Fix the default __sizeof__ implementation for variable-sized ↵Antoine Pitrou2015-03-106-52/+22
|\ \ | |/ | | | | objects.
| * Issue #23629: Fix the default __sizeof__ implementation for variable-sized ↵Antoine Pitrou2015-03-106-29/+22
| | | | | | | | objects.
* | Issue #22028: Ensure mimetypes will not open registry keys with embedded nullsSteve Dower2015-03-101-1/+2
|\ \ | |/
| * Issue #22028: Ensure mimetypes will not open registry keys with embedded nullsSteve Dower2015-03-101-1/+2
| |
* | Adds note about installed debug binaries.Steve Dower2015-03-101-1/+1
| |
* | Issue #23606: Disable ctypes.util.find_library("c") on Windows so tests are ↵Steve Dower2015-03-101-1/+3
| | | | | | | | skipped while we figure out how best to approach the CRT change
* | Merge 3.4 (asyncio)Victor Stinner2015-03-101-2/+5
|\ \ | |/
| * asyncio: Fix repr(BaseSubprocessTransport) if it didn't start yetVictor Stinner2015-03-101-2/+5
| | | | | | | | | | Replace "running" with "not started" and don't show the pid if the subprocess didn't start yet.
* | Merge 3.4 (asyncio doc)Victor Stinner2015-03-101-4/+4
|\ \ | |/
| * asyncio doc: changes on the Queue API missed Python 3.4.3 releaseVictor Stinner2015-03-101-4/+4
| |
* | Issue #23432: Remove duplicate content from SystemExit docs.Berker Peksag2015-03-101-13/+13
|\ \ | |/ | | | | Also, document SystemExit.code attribute explicitly.
| * Issue #23432: Remove duplicate content from SystemExit docs.Berker Peksag2015-03-101-13/+13
| | | | | | | | Also, document SystemExit.code attribute explicitly.
* | Merge 3.4 (os doc)Victor Stinner2015-03-101-2/+3
|\ \ | |/
| * Issue #23605: os.walk() doc now mentions shutil.rmtree() in the last exampleVictor Stinner2015-03-101-2/+3
| |
* | Issue #22524: Rephrase scandir addition in What's New in Python 3.5Victor Stinner2015-03-101-8/+18
| | | | | | | | Patch written by Ben Hoyt.
* | Issue #23605: os.walk() now calls os.scandir() instead of os.listdir().Victor Stinner2015-03-103-15/+45
| | | | | | | | | | The usage of os.scandir() reduces the number of calls to os.stat(). Initial patch written by Ben Hoyt.
* | Issue #23571: Oops, fix #ifdef assert()Victor Stinner2015-03-091-1/+1
| | | | | | | | assert() are noop when NDEBUG is defined. We want the opposite.
* | Issue #23619: Ensure C variable is initialized before using it.Steve Dower2015-03-091-2/+1
| | | | | | | | The garbage in _crtInstalledToken was causing the IsCrtInstalled() function to return TRUE without actually checking anything. We now initialize the variable first.
* | merge 3.4Benjamin Peterson2015-03-091-5/+8
|\ \ | |/
| * fix up import styleBenjamin Peterson2015-03-091-5/+8
| |
* | Merge.Larry Hastings2015-03-0911-12/+39
|\ \
| * \ Issue #23617: Correct plurals typo noted by Kentrell Johnson.Ned Deily2015-03-091-1/+1
| |\ \ | | |/
| | * Issue #23617: Correct plurals typo noted by Kentrell Johnson.Ned Deily2015-03-091-1/+1
| | |
| * | Issue #23612: Fixes upgrade code and version for Windows installer.Steve Dower2015-03-083-5/+5
| | |
| * | Minor updates to Windows installer upload script.Steve Dower2015-03-082-3/+4
| | |
| * | Issue #22980: Under Linux, C extensions now include bitness in the file name,Antoine Pitrou2015-03-084-2/+28
| | | | | | | | | | | | to make it easy to test 32-bit and 64-bit builds in the same working tree.
| * | merge 3.4 (#23608)Benjamin Peterson2015-03-081-1/+1
| |\ \ | | |/
| | * indicate correct version (closes #23608)Benjamin Peterson2015-03-081-1/+1
| | |
* | | Post-release changes for 3.5.0a2.Larry Hastings2015-03-092-2/+14
| | |
* | | Merge.Larry Hastings2015-03-080-0/+0
|\ \ \