- 05 Ara, 2016 1 kayıt (commit)
-
-
Nick Coghlan yazdı
Handling zero-argument super() in __init_subclass__ and __set_name__ involved moving __class__ initialisation to type.__new__. This requires cooperation from custom metaclasses to ensure that the new __classcell__ entry is passed along appropriately. The initial implementation of that change resulted in abruptly broken zero-argument super() support in metaclasses that didn't adhere to the new requirements (such as Django's metaclass for Model definitions). The updated approach adopted here instead emits a deprecation warning for those cases, and makes them work the same way they did in Python 3.5. This patch also improves the related class machinery documentation to cover these details and to include more reader-friendly cross-references and index entries.
-
- 04 Ara, 2016 5 kayıt (commit)
-
-
Raymond Hettinger yazdı
-
Serhiy Storchaka yazdı
-
Serhiy Storchaka yazdı
-
Serhiy Storchaka yazdı
-
Serhiy Storchaka yazdı
-
- 03 Ara, 2016 5 kayıt (commit)
-
-
Steve Dower yazdı
-
Steve Dower yazdı
-
Steve Dower yazdı
-
Steve Dower yazdı
-
Steve Dower yazdı
-
- 02 Ara, 2016 4 kayıt (commit)
-
-
Serhiy Storchaka yazdı
-
Serhiy Storchaka yazdı
names.
-
Serhiy Storchaka yazdı
names.
-
Nick Coghlan yazdı
This is still useful for single source Python 2/3 code migrating away from inspect.getargspec(), but that wasn't clear with the documented deprecation in place.
-
- 01 Ara, 2016 2 kayıt (commit)
-
-
doko@ubuntu.com yazdı
-
Yury Selivanov yazdı
-
- 29 Kas, 2016 4 kayıt (commit)
-
-
Guido van Rossum yazdı
-
Guido van Rossum yazdı
-
Victor Stinner yazdı
Issue #26273: Add new socket.TCP_CONGESTION (Linux 2.6.13) and socket.TCP_USER_TIMEOUT (Linux 2.6.37) constants. Patch written by Omar Sandoval.
-
Serhiy Storchaka yazdı
a descriptor that is used inside that class no longer prevents calling the __set_name__ method of other descriptors.
-
- 28 Kas, 2016 2 kayıt (commit)
-
-
Yury Selivanov yazdı
Thanks to Serhiy Storchaka for pointing out the missing notes. Patch by Elvis Pranskevichus.
-
Zachary Ware yazdı
-
- 26 Kas, 2016 4 kayıt (commit)
-
-
Łukasz Langa yazdı
-
Łukasz Langa yazdı
Fixes #24142: [configparser] always join multiline values to not leave the parser in an invalid state
-
Serhiy Storchaka yazdı
in the documentation.
-
Serhiy Storchaka yazdı
in the documentation.
-
- 25 Kas, 2016 5 kayıt (commit)
-
-
Berker Peksag yazdı
-
Berker Peksag yazdı
-
Berker Peksag yazdı
-
Berker Peksag yazdı
Patch by Wojtek Ruszczewski.
-
Berker Peksag yazdı
Patch by Julien Palard.
-
- 24 Kas, 2016 5 kayıt (commit)
-
-
Victor Stinner yazdı
Issue #28782: Fix a bug in the implementation ``yield from`` when checking if the next instruction is YIELD_FROM. Regression introduced by WORDCODE (issue #26647). Reviewed by Serhiy Storchaka and Yury Selivanov.
-
Guido van Rossum yazdı
-
Guido van Rossum yazdı
-
Raymond Hettinger yazdı
-
INADA Naoki yazdı
-
- 23 Kas, 2016 2 kayıt (commit)
-
-
Steve Dower yazdı
-
Steve Dower yazdı
-
- 22 Kas, 2016 1 kayıt (commit)
-
-
Raymond Hettinger yazdı
-