- 10 Eyl, 2016 40 kayıt (commit)
-
-
Zachary Ware yazdı
This change didn't have the intended effect.
-
Martin Panter yazdı
-
Martin Panter yazdı
-
Martin Panter yazdı
-
Victor Stinner yazdı
-
Nick Coghlan yazdı
json.loads (and hence json.load) now support binary input encoded as UTF-8, UTF-16 or UTF-32. Patch by Serhiy Storchaka.
-
Nick Coghlan yazdı
The pure Python fallback implementation of functools.partial now matches the behaviour of its accelerated C counterpart for subclassing, pickling and text representation purposes. Patch by Emanuel Barry and Serhiy Storchaka.
-
Victor Stinner yazdı
-
Victor Stinner yazdı
-
Victor Stinner yazdı
-
Victor Stinner yazdı
Issue #27829: don't pass --quiet option to regrtest to see "Warning -- xxx was modified by ..." warnings.
-
Serhiy Storchaka yazdı
between 1.0 and 2.0 to 1.
-
Serhiy Storchaka yazdı
between 1.0 and 2.0 to 1.
-
Berker Peksag yazdı
-
Victor Stinner yazdı
* Use "with Popen" to cleanup properly the process * Use support.temp_cwd() to properly change the working directory * Use environ.pop() to cleanup the code
-
Victor Stinner yazdı
Issue #27938: Normalize aliases of the ASCII encoding, because _Py_normalize_encoding() now correctly normalize encoding names.
-
Victor Stinner yazdı
HOME is not set on Windows for example. Use also textwrap.dedent() for the script.
-
Łukasz Langa yazdı
Patch by Martin Matusiak and Sam Kimbrel.
-
Victor Stinner yazdı
Issue #28056 and issue #26058.
-
Łukasz Langa yazdı
by the user.
-
Guido van Rossum yazdı
-
Guido van Rossum yazdı
-
R David Murray yazdı
It turns out we can't depend on email.message getting imported every place message_factory is needed, so to avoid a circular import we need to special case Policy.message_factory=None in the parser instead of using monkey patching. I had a feeling that was a bad idea when I did it.
-
Victor Stinner yazdı
-
Benjamin Peterson yazdı
-
Victor Stinner yazdı
-
Victor Stinner yazdı
-
Steve Dower yazdı
-
Steve Dower yazdı
-
generalizations added in 3.5.
-
Gregory P. Smith yazdı
-
Steve Dower 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ı
-