- 22 Agu, 2016 20 kayıt (commit)
-
-
Victor Stinner yazdı
-
Victor Stinner yazdı
-
Victor Stinner yazdı
-
Victor Stinner yazdı
-
Victor Stinner yazdı
Issue #27809: Helper function optimized to create an exception: use fastcall whenever possible.
-
Victor Stinner yazdı
Modify: * init_subclass() * builtin___build_class__() Fix also a bug in init_subclass(): check for super() failure.
-
Victor Stinner yazdı
Issue #27809. _PyObject_FastCallDict() now supports keyword arguments, and so the args==NULL fast-path can also be used when kwargs is not NULL.
-
Victor Stinner yazdı
Modify: * builtin_sorted() * classmethoddescr_call() * methoddescr_call() * wrapperdescr_call()
-
Victor Stinner yazdı
* Rename nm to name * PEP 7: add { ... } to if/else blocks
-
Victor Stinner yazdı
Issue #27809: * Rename _PyFunction_FastCall() to _PyFunction_FastCallDict() * Rename _PyCFunction_FastCall() to _PyCFunction_FastCallDict() * _PyFunction_FastCallDict() now supports keyword arguments
-
Victor Stinner yazdı
Issue #27809: * Rename _PyObject_FastCall() function to _PyObject_FastCallDict() * Add _PyObject_FastCall(), _PyObject_CallNoArg() and _PyObject_CallArg1() macros calling _PyObject_FastCallDict()
-
Berker Peksag yazdı
-
Berker Peksag yazdı
This was found by PVS-Studio: V595 The 'def' pointer was utilized before it was verified against nullptr. Check lines: 286, 292. pystate.c 286 Initial patch by Christian Heimes.
-
Victor Stinner yazdı
Use flush=True to try to get a warning which is missing in buildbots. Use also f-string to make the code shorter.
-
Victor Stinner yazdı
* main.py: remove unused import * runtest: simplify runtest_inner() parameters, reuse ns parameter
-
Mark Dickinson yazdı
-
Victor Stinner yazdı
Issue #27128. When a Python function is called with no arguments, but all parameters have a default value: use default values as arguments for the fast path.
-
Mark Dickinson yazdı
-
Mark Dickinson yazdı
Issue #27539: Fix unnormalised Fraction.__pow__ result for negative exponent and base. Thanks Vedran Čačić.
-
Raymond Hettinger yazdı
-
- 21 Agu, 2016 19 kayıt (commit)
-
-
Jason R. Coombs yazdı
-
Benjamin Peterson yazdı
-
Serhiy Storchaka yazdı
-
Berker Peksag yazdı
-
Berker Peksag yazdı
According to PEP 249, cursor.description must be available for any SELECT statements, such as those that use CTEs. Backported from https://github.com/ghaering/pysqlite/commit/f67fa9c898a4713850e16934046f0fe2cba8c44c Additional test cases added by me.
-
Mark Dickinson yazdı
-
Mark Dickinson yazdı
have caused off-by-one-ulp results on certain platforms.
-
Mark Dickinson yazdı
-
Mark Dickinson yazdı
-
Nick Coghlan yazdı
-
Nick Coghlan yazdı
Multi-phase extension module import now correctly allows the ``m_methods`` field to be used to add module level functions to instances of non-module types returned from ``Py_create_mod``. Patch by Xiang Zhang.
-
Martin Panter yazdı
-
Terry Jan Reedy yazdı
-
Terry Jan Reedy yazdı
-
Martin Panter yazdı
Also try to clarify the find_spec() error message.
-
Terry Jan Reedy yazdı
-
Terry Jan Reedy yazdı
-
Terry Jan Reedy yazdı
-
Terry Jan Reedy yazdı
-
- 20 Agu, 2016 1 kayıt (commit)
-
-
Jason R. Coombs yazdı
-