summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Emit METH_FASTCALL code in Argument ClinicVictor Stinner2016-09-103-27/+178
| | | | | | | | | Issue #27810: * Modify vgetargskeywordsfast() to work on a C array of PyObject* rather than working on a tuple directly. * Add _PyArg_ParseStack() * Argument Clinic now emits code using the new METH_FASTCALL calling convention
* Add METH_FASTCALL calling conventionVictor Stinner2016-09-105-1/+102
| | | | | | | | | | | Issue #27810: Add a new calling convention for C functions: PyObject* func(PyObject *self, PyObject **args, Py_ssize_t nargs, PyObject *kwnames); Where args is a C array of positional arguments followed by values of keyword arguments. nargs is the number of positional arguments, kwnames are keys of keyword arguments. kwnames can be NULL.
* Fix SystemError in compact dictVictor Stinner2016-09-102-19/+102
| | | | | | | | | Issue #28040: Fix _PyDict_DelItem_KnownHash() and _PyDict_Pop(): convert splitted table to combined table to be able to delete the item. Write an unit test for the issue. Patch by INADA Naoki.
* make invalid_comma_and_underscore a real prototypeBenjamin Peterson2016-09-101-1/+1
|
* Further improved ',' and '_' specification in format mini-language.Eric V. Smith2016-09-101-2/+2
|
* Improved ',' and '_' specification in format mini-language.Eric V. Smith2016-09-101-1/+2
|
* Issue 27080: PEP 515: add '_' formatting option.Eric V. Smith2016-09-104-22/+93
|
* compile dtrace stubsBenjamin Peterson2016-09-102-2/+6
|
* Issue #27199: TarFile expose copyfileobj bufsize to improve throughputŁukasz Langa2016-09-102-15/+21
| | | | Patch by Jason Fried.
* add dtrace inline stubsBenjamin Peterson2016-09-102-0/+25
|
* just start with an int rather than castingBenjamin Peterson2016-09-101-2/+2
|
* Issue 27948: Allow backslashes in the literal string portion of f-strings, ↵Eric V. Smith2016-09-109-349/+329
| | | | but not in the expressions. Also, require expressions to begin and end with literal curly braces.
* Issue #27566: Fix clean target in freeze makefile (patch by Lisa Roach)Steve Dower2016-09-102-2/+4
|\
| * Issue #27566: Fix clean target in freeze makefile (patch by Lisa Roach)Steve Dower2016-09-102-2/+4
| |
* | Issue #28046: Fix distutilsZachary Ware2016-09-101-1/+5
| | | | | | | | Why do we have two sysconfig modules again?
* | Issue #27705: Update message in validate_ucrtbase.pySteve Dower2016-09-102-2/+5
|\ \ | |/
| * Issue #27705: Update message in validate_ucrtbase.pySteve Dower2016-09-102-2/+5
| |
* | Issue #25969: Update the lib2to3 grammar to handle the unpackingGregory P. Smith ext:(%20%5BGoogle%20Inc.%5D)2016-09-107-6/+91
|\ \ | |/ | | | | generalizations added in 3.5.
| * Issue #25969: Update the lib2to3 grammar to handle the unpackingGregory P. Smith ext:(%20%5BGoogle%20Inc.%5D)2016-09-107-6/+91
| | | | | | | | generalizations added in 3.5.
* | merge (3.6 already has this)Gregory P. Smith2016-09-100-0/+0
|\ \ | |/
| * remove fix_callable - callable() was readded many releases ago.Gregory P. Smith2016-09-102-129/+0
| |
* | dummy dtrace probes are a good place to use inline functionsBenjamin Peterson2016-09-101-19/+19
| |
* | Merge from ZachSteve Dower2016-09-1010-37/+24
|\ \
| * | Issue #28046: Remove platform-specific directories from sys.pathZachary Ware2016-09-1010-37/+24
| | |
* | | Issue #27932: Fixes memory leak in platform.win32_ver()Steve Dower2016-09-102-29/+35
|\ \ \ | |/ / |/| / | |/
| * Issue #27932: Fixes memory leak in platform.win32_ver()Steve Dower2016-09-102-29/+35
| |
* | Actually fix suspicious markup, I ignored it too readilyZachary Ware2016-09-102-2/+1
| |
* | fix dummy macroBenjamin Peterson2016-09-102-2/+3
| |
* | DTrace support: function calls, GC activity, line executionŁukasz Langa2016-09-1031-18/+1305
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Tested on macOS 10.11 dtrace, Ubuntu 16.04 SystemTap, and libbcc. Largely based by an initial patch by Jesús Cea Avión, with some influence from Dave Malcolm's SystemTap patch and Nikhil Benesch's unification patch. Things deliberately left out for simplicity: - ustack helpers, I have no way of testing them at this point since they are Solaris-specific - PyFrameObject * in function__entry/function__return, this is SystemTap-specific - SPARC support - dynamic tracing - sys module dtrace facility introspection All of those might be added later.
* | Remove line numbers from suspicious rulesZachary Ware2016-09-101-16/+16
| |
* | Issue #25758: Prevents zipimport from unnecessarily encoding a filename ↵Steve Dower2016-09-103-11/+8
|\ \ | |/ | | | | (patch by Eryk Sun)
| * Issue #25758: Prevents zipimport from unnecessarily encoding a filename ↵Steve Dower2016-09-103-11/+8
| | | | | | | | (patch by Eryk Sun)
* | Merge: #14977: Make mailcap respect the order of the lines in the mailcap file.R David Murray2016-09-105-27/+80
|\ \ | |/
| * #14977: Make mailcap respect the order of the lines in the mailcap file.R David Murray2016-09-105-27/+76
| | | | | | | | | | This is required by RFC 1542, so despite the subtle behavior change we are treating it as a bug. Patch by Michael Lazar.
| * Issue #22450: Use "Accept: */*" in the default headers for urllib.requestRaymond Hettinger2016-09-092-1/+5
| |
* | Remove 2to3's fix_callable... We reintroduced the callable built-inGregory P. Smith2016-09-102-129/+0
| | | | | | | | pretty early on in the 3.x series (3.1 or 3.2?).
* | Closes #27976: Deprecate bundled full copy of libffiZachary Ware2016-09-105-8/+57
| | | | | | | | | | Builds on non-OSX UNIX now default to using the system libffi, and warn if the bundled copy is used.
* | MergeRaymond Hettinger2016-09-091-1/+1
| |
* | Issue #25144: Ensures TargetDir is set before continuing with custom install.Steve Dower2016-09-092-0/+6
|\ \ | |/
| * Issue #25144: Ensures TargetDir is set before continuing with custom install.Steve Dower2016-09-092-0/+6
| |
* | Rename test_strlit -> test_string_literalsZachary Ware2016-09-091-0/+0
| |
* | Issue #28053: Applying refactorings, docs and other cleanup to follow.Davin Potts2016-09-0913-40/+77
| |
* | mergeRaymond Hettinger2016-09-097-19/+96
|\ \ | |/
| * Issue 14976: Note that the queue module is not designed to protect against ↵Raymond Hettinger2016-09-091-5/+2
| | | | | | | | reentrancy
| * Merge asyncio upstream.Guido van Rossum2016-09-096-14/+94
| |
* | Fix call to PathCombineW.Steve Dower2016-09-091-1/+1
| |
* | We're not that far in the future yetZachary Ware2016-09-091-1/+1
| |
* | Fix suspicious markupZachary Ware2016-09-091-0/+4
| |
* | Remove buildbot diagnostic code.Steve Dower2016-09-091-7/+0
| |
* | Remove another useless buildbot scriptZachary Ware2016-09-091-3/+0
| |