- 10 Eyl, 2016 39 kayıt (commit)
-
-
Benjamin Peterson yazdı
-
Victor Stinner yazdı
-
Victor Stinner yazdı
-
Victor Stinner yazdı
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
-
Victor Stinner yazdı
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.
-
Victor Stinner yazdı
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.
-
Benjamin Peterson yazdı
-
Eric V. Smith yazdı
-
Eric V. Smith yazdı
-
Eric V. Smith yazdı
-
Benjamin Peterson yazdı
-
Łukasz Langa yazdı
Patch by Jason Fried.
-
Benjamin Peterson yazdı
-
Benjamin Peterson yazdı
-
Eric V. Smith yazdı
Issue 27948: Allow backslashes in the literal string portion of f-strings, but not in the expressions. Also, require expressions to begin and end with literal curly braces.
-
Steve Dower yazdı
-
Steve Dower yazdı
-
Zachary Ware yazdı
Why do we have two sysconfig modules again?
-
Steve Dower yazdı
-
Steve Dower yazdı
-
generalizations added in 3.5.
-
generalizations added in 3.5.
-
Gregory P. Smith yazdı
-
Gregory P. Smith yazdı
-
Benjamin Peterson yazdı
-
Steve Dower yazdı
-
Steve Dower yazdı
-
Steve Dower yazdı
-
Zachary Ware yazdı
-
Zachary Ware yazdı
-
Benjamin Peterson yazdı
-
Łukasz Langa yazdı
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.
-
Zachary Ware yazdı
-
Steve Dower yazdı
-
Steve Dower yazdı
-
R David Murray yazdı
-
R David Murray yazdı
This is required by RFC 1542, so despite the subtle behavior change we are treating it as a bug. Patch by Michael Lazar.
-
Gregory P. Smith yazdı
pretty early on in the 3.x series (3.1 or 3.2?).
-
Zachary Ware yazdı
Builds on non-OSX UNIX now default to using the system libffi, and warn if the bundled copy is used.
-
- 09 Eyl, 2016 1 kayıt (commit)
-
-
Raymond Hettinger yazdı
-