- 25 Mar, 2019 1 kayıt (commit)
-
-
Raymond Hettinger yazdı
-
- 03 Mar, 2019 1 kayıt (commit)
-
-
Brennan D Baraban yazdı
Co-authored-by:
Maxwell <maxwellpxt@gmail.com> Co-authored-by:
Stéphane Wirtel <stephane@wirtel.be> https://bugs.python.org/issue35899
-
- 24 Ock, 2019 1 kayıt (commit)
-
-
- 19 Eki, 2018 1 kayıt (commit)
-
-
Victor Stinner yazdı
sys and threading were imported twice.
-
- 06 Eki, 2018 1 kayıt (commit)
-
-
Ethan Furman yazdı
-
- 22 Eyl, 2018 1 kayıt (commit)
-
-
Ethan Furman yazdı
* bpo-29577: allow multiple mixin classes
-
- 12 Eyl, 2018 2 kayıt (commit)
-
-
Ethan Furman yazdı
* raise exception if _missing_ returns None or invalid type
-
orlnub123 yazdı
* Fix enum members getting shadowed by parent attributes * Move Enum._convert to EnumMeta._convert_ * Deprecate _convert
-
- 10 Eyl, 2018 1 kayıt (commit)
-
-
Rahul Jha yazdı
* bpo-33217: Raise TypeError for non-Enum lookups in Enums
-
- 22 Ock, 2018 1 kayıt (commit)
-
-
Ethan Furman yazdı
* bpo-31801: Enum: add _ignore_ as class option _ignore_ is a list, or white-space seperated str, of names that will not be candidates for members; these names, and _ignore_ itself, are removed from the final class. * bpo-31801: Enum: add documentation for _ignore_ * bpo-31801: Enum: remove trailing whitespace * bpo-31801: Enum: fix bulleted list format * bpo-31801: add version added for _ignore_
-
- 07 Eyl, 2017 1 kayıt (commit)
-
-
Antoine Pitrou yazdı
* Remove Setup.config * Always define WITH_THREAD for compatibility.
-
- 21 Haz, 2017 1 kayıt (commit)
-
-
Dong-hee Na yazdı
* bpo-30616: Functional API of enum allows to create empty enums. * Update NEWS move addition to avoid conflict
-
- 24 Ock, 2017 2 kayıt (commit)
-
-
Ethan Furman yazdı
-
Serhiy Storchaka yazdı
-
- 21 Kas, 2016 1 kayıt (commit)
-
-
Ethan Furman yazdı
close issue28172: Change all example enum member names to uppercase, per Guido; patch by Chris Angelico.
-
- 18 Eyl, 2016 1 kayıt (commit)
-
-
Ethan Furman yazdı
-
- 11 Eyl, 2016 1 kayıt (commit)
-
-
Ethan Furman yazdı
-
- 04 Eyl, 2016 1 kayıt (commit)
-
-
Ethan Furman yazdı
-
- 02 Eyl, 2016 2 kayıt (commit)
-
-
Ethan Furman yazdı
-
Ethan Furman yazdı
-
- 31 Agu, 2016 1 kayıt (commit)
-
-
Ethan Furman yazdı
-
- 20 Agu, 2016 2 kayıt (commit)
-
-
Ethan Furman yazdı
-
Ethan Furman yazdı
-
- 05 Agu, 2016 1 kayıt (commit)
-
-
Ethan Furman yazdı
-
- 28 Tem, 2016 1 kayıt (commit)
-
-
Martin Panter yazdı
Based on patch by Ville Skyttä.
-
- 03 Haz, 2016 1 kayıt (commit)
-
-
consistent name for values having multiple names. Ex: signal.Signals(6) now refers to itself as signal.SIGALRM rather than flipping between that and signal.SIGIOT based on the interpreter's hash randomization seed. This helps finish issue27167.
-
- 12 May, 2016 1 kayıt (commit)
-
-
Serhiy Storchaka yazdı
-
- 01 May, 2016 1 kayıt (commit)
-
-
Ethan Furman yazdı
-
- 14 Nis, 2016 1 kayıt (commit)
-
-
Ethan Furman yazdı
-
- 15 Ock, 2016 1 kayıt (commit)
-
-
Ethan Furman yazdı
update Finer Points section of docs to cover boolean evaluation; add more tests for pure and mixed boolean evaluation
-
- 14 Kas, 2015 1 kayıt (commit)
-
-
Martin Panter yazdı
-
- 18 Eyl, 2015 1 kayıt (commit)
-
-
Ethan Furman yazdı
-
- 12 Nis, 2015 1 kayıt (commit)
-
-
Ethan Furman yazdı
-
- 11 Nis, 2015 1 kayıt (commit)
-
-
Ethan Furman yazdı
-
- 04 Nis, 2015 1 kayıt (commit)
-
-
Serhiy Storchaka yazdı
-
- 31 Mar, 2015 1 kayıt (commit)
-
-
Serhiy Storchaka yazdı
protocols.
-
- 19 Mar, 2015 2 kayıt (commit)
-
-
Ethan Furman yazdı
add private method to enum to support replacing global constants with Enum members: - search for candidate constants via supplied filter - create new enum class and members - insert enum class and replace constants with members via supplied module name - replace __reduce_ex__ with function that returns member name, so previous Python versions can unpickle modify IntEnum classes to use new method
-
Ethan Furman yazdı
add private method to enum to support replacing global constants with Enum members: - search for candidate constants via supplied filter - create new enum class and members - insert enum class and replace constants with members via supplied module name - replace __reduce_ex__ with function that returns member name, so previous Python versions can unpickle modify IntEnum classes to use new method
-
- 14 Eki, 2014 1 kayıt (commit)
-
-
Ethan Furman yazdı
-
- 17 Eyl, 2014 1 kayıt (commit)
-
-
Ethan Furman yazdı
-