1. f4e0ceb Doc: Fix spelling errors of 'initial' in enum.py (GH-16314) by Miss Islington (bot) · 4 years, 10 months ago
  2. 8b914d2 bpo-35899: Fix Enum handling of empty and weird strings (GH-11891) by Brennan D Baraban · 5 years ago
  3. 1fd06f1 bpo-35717: Fix KeyError exception raised when using enums and compile (GH-11523) by Rémi Lapeyre · 5 years ago
  4. 34ae04f Speed-up building enums by value, e.g. http.HTTPStatus(200) (#11318) by Andrew Svetlov · 6 years ago
  5. cd45385 bpo-34909: keep searching mixins until base class is found (GH-9737) by Ethan Furman · 6 years ago
  6. 5bdab64 bpo-29577: Enum: mixin classes don't mix well with already mixed Enums (GH-9328) by Ethan Furman · 6 years ago
  7. 019f0a0 bpo-34536: raise error for invalid _missing_ results (GH-9147) by Ethan Furman · 6 years ago
  8. 0fb9fad bpo-34282: Fix Enum._convert shadowing members named _convert (GH-8568) by orlnub123 · 6 years ago
  9. 9430652 bpo-33217: Raise TypeError for non-Enum lookups in Enums (GH-6651) by Rahul Jha · 6 years ago
  10. e57f91a bpo-33866: enum: Stop using OrderedDict (GH-7698) by INADA Naoki · 6 years ago
  11. b8e21f1 bpo-31947: remove None default for names param in Enum._create_ (GH-4288) by anentropic · 6 years ago
  12. a4b1bb4 bpo-31801: Enum: add _ignore_ as class option (#5237) by Ethan Furman · 6 years ago
  13. 8110837 bpo-30152: Reduce the number of imports for argparse. (#1269) by Serhiy Storchaka · 7 years ago
  14. 49b2734 Spelling fixes (#2902) by Ville Skyttä · 7 years ago
  15. dcc8ce4 bpo-30616: Functional API of enum allows to create empty enums. (#2304) by Dong-hee Na · 7 years ago
  16. 28cf663 closes issue29167: fix race condition in (Int)Flag by Ethan Furman · 7 years ago
  17. 381dc6c Issue #29103: Remove unused import. Noticed by Jean-Sebastien Bevilacqua. by Raymond Hettinger · 8 years ago
  18. 23bb6f4 close issue28172: Change all example enum member names to uppercase, per Guido; patch by Chris Angelico. by Ethan Furman · 8 years ago
  19. 3515dcc issue23591: fix flag decomposition and repr by Ethan Furman · 8 years ago
  20. 06339e7 Enum._convert: sort by value, then by name by Ethan Furman · 8 years ago
  21. c16595e issue23591: add auto() for auto-generating Enum member values by Ethan Furman · 8 years ago
  22. 27682d2 issue23591: more docs; slight change to repr by Ethan Furman · 8 years ago
  23. 25d94bb issue23591: bool(empty_flags) == False; more docs & tests by Ethan Furman · 8 years ago
  24. 0443953 issue23591: optimize _high_bit() by Ethan Furman · 8 years ago
  25. 65a5a47 issue23591: add docs; code cleanup; more tests by Ethan Furman · 8 years ago
  26. ee47e5c issue23591: add Flags, IntFlags, and tests by Ethan Furman · 8 years ago
  27. e8e6127 issue26981: add _order_ compatibility shim to enum.Enum by Ethan Furman · 8 years ago
  28. 332dbc7 Issue26988: remove AutoEnum by Ethan Furman · 8 years ago
  29. 73fc586 Add AutoEnum: automatically provides next value if missing. Issue 26988. by Ethan Furman · 8 years ago
  30. 6f20bd6 signal, socket, and ssl module IntEnum constant name lookups now return a by Gregory P. Smith ext:(%20%5BGoogle%20Inc.%5D) · 8 years ago
  31. 3547069 issue26893: use mro() to examine class heirarchy by Ethan Furman · 8 years ago
  32. 3803ad4 issue26893: use mro() to examine class heirarchy by Ethan Furman · 8 years ago
  33. 0fe7978 Issue26748: Enum classes should evaluate as True by Ethan Furman · 8 years ago
  34. de4e079 Issue26748: Enum classes should evaluate as True by Ethan Furman · 8 years ago
  35. 5de67b1 Issue26748: Enum classes should evaluate as True by Ethan Furman · 8 years ago
  36. 60255b6 revert change 87a9dff5106c: pure Enum members again evaluate to True; by Ethan Furman · 9 years ago
  37. 19e69c5 Issue #23883: Add missing APIs to __all__; patch by Jacek Kołodziej by Martin Panter · 9 years ago
  38. c791507 Issue 25147: add reason for using _collections by Ethan Furman · 9 years ago
  39. e5754ab Close issue25147: use C implementation of OrderedDict by Ethan Furman · 9 years ago
  40. 6db1fd5 Close issue24840: Enum._value_ is queried for bool(); original patch by Mike Lundy by Ethan Furman · 9 years ago
  41. 48a724f Close issue23900: add default __doc__ to new enumerations that do not specify one. by Ethan Furman · 9 years ago
  42. 24e837f issue23673 by Ethan Furman · 9 years ago
  43. 354ecf1 Close issue23486: performance boost for enum member lookup by Ethan Furman · 9 years ago
  44. ec5f8eb Issue22506: remove name & value from __dir__ as they now show up automatically by Ethan Furman · 10 years ago
  45. 987f3dd Issue22506: merge from 3.4 by Ethan Furman · 10 years ago
  46. 0ae550b Issue22506: added methods on base Enum class now show up in dir of Enum subclass (3.4) by Ethan Furman · 10 years ago
  47. d9925a1 Close issue21706: add 'start' parameter to functional API by Ethan Furman · 10 years ago
  48. 0081f23 consistently use _name_ and _value_; patch from Kiss Gyorgy by Ethan Furman · 10 years ago
  49. 482fe04 issue23673 by Ethan Furman · 9 years ago
  50. 2da9504 Close issue20653: improve functional API docs; minor code changes by Ethan Furman · 10 years ago
  51. dc87052 Close issue20653: allow Enum subclasses to override __reduce_ex__ by Ethan Furman · 10 years ago
  52. ca1b794 Close issue20534: all pickle protocols now supported. by Ethan Furman · 10 years ago
  53. be3c2fe removed Enum.__eq__ as it added nothing by Ethan Furman · 11 years ago
  54. 648f860 Close #19156: add tests and fix for Enum helper edge cases. Patch from CliffM. by Ethan Furman · 11 years ago
  55. 33918c1 Issue19030: fixed comment that was still referring to a changed descriptor. by Ethan Furman · 11 years ago
  56. e03ea37 Close #19030: improvements to inspect and Enum. by Ethan Furman · 11 years ago
  57. 64a9972 Close #19025: Better error message when trying to delete an Enum member. by Ethan Furman · 11 years ago
  58. c850f34 Close #18693: Enum is now more help() friendly. by Ethan Furman · 11 years ago
  59. 101e074 Close #18989: enum members will no longer overwrite other attributes, nor be overwritten by them. by Ethan Furman · 11 years ago
  60. 2131a4a Add __reversed__ to Enum. Minor code reorg (moved __members__ to be in alpha order). by Ethan Furman · 11 years ago
  61. f203f2d Close #18924: Block naive attempts to change an Enum member. by Ethan Furman · 11 years ago
  62. ec15a82 Close #18738: Route __format__ calls to mixed-in type for mixed Enums (such as IntEnum). by Ethan Furman · 11 years ago
  63. 9a3777e #18705: merge with 3.3. by Ezio Melotti · 11 years ago
  64. 388a392 Issue 18693: Put custom __dir__ back in place. Will instead look at fixing `help()`. by Ethan Furman · 11 years ago
  65. 53f58db Close #18693: __dir__ removed from Enum; help() now helpful. by Ethan Furman · 11 years ago
  66. 5e5a823 Close #18635: Move class level private attribute from instance to class. by Ethan Furman · 11 years ago
  67. b41803e Close #18545: now only executes member_type if no _value_ is assigned in __new__. by Ethan Furman · 11 years ago
  68. 520ad57 Change _names to _names_ since the latter is reserved for Enum use. by Ethan Furman · 11 years ago
  69. 2aa2732 Close #18508 -- fix _value2member_map to always have the member's value by Ethan Furman · 11 years ago
  70. f24bb35 closes issue18042 -- a `unique` decorator is added to enum.py by Ethan Furman · 11 years ago
  71. 6b3d64a Closes issue 17947. Adds PEP-0435 (Adding an Enum type to the Python standard library). by Ethan Furman · 11 years ago