1. 7cf0aad bpo-42517: [Enum] do not convert private names into members (GH-23722) by Ethan Furman · 3 years, 7 months ago
  2. d986d16 bpo-41816: `StrEnum.__str__` is `str.__str__` (GH-22362) by Ethan Furman · 3 years, 10 months ago
  3. 62e40d8 Enum: add extended AutoNumber example (GH-22349) by Ethan Furman · 3 years, 10 months ago
  4. 0063ff4 bpo-41816: add `StrEnum` (GH-22337) by Ethan Furman · 3 years, 10 months ago
  5. 7219e27 Enum: make `Flag` and `IntFlag` members iterable (GH-22221) by Ethan Furman · 3 years, 10 months ago
  6. 542e1df bpo-40721: add note about enum member name case (GH-22231) by Ethan Furman · 3 years, 10 months ago
  7. d3ded08 bpo-40204: Add :noindex: in the documentation (GH-21859) by Victor Stinner · 4 years ago
  8. 1ee5dc1 Remove trailing >>> in enum docs (GH-21358) by E-Paine · 4 years ago
  9. d9a43e2 bpo-40025: Require _generate_next_value_ to be defined before members (GH-19098) by Ethan Onstott · 4 years, 3 months ago
  10. 24bcefc bpo-39234: `enum.auto()` default initial value as 1 (GH-17878) by YoSTEALTH · 4 years, 6 months ago
  11. 2e9012a bpo-39234: Doc: `enum.auto()` incrementation value not specified. (GH-17872) by YoSTEALTH · 4 years, 6 months ago
  12. d3c8d73 Minor documentation fixes on library/enum (GH-15234) by Antoine · 5 years ago
  13. 2f19e82 bpo-37479: on Enum subclasses with mixins, __format__ uses overridden __str__ (GH-14545) by thatneat · 5 years ago
  14. dfc8bb9 Fix typo: class declaration (GH-11678) by nu_no · 5 years ago
  15. 5bdab64 bpo-29577: Enum: mixin classes don't mix well with already mixed Enums (GH-9328) by Ethan Furman · 6 years ago
  16. f522374 bpo-33437: add __new__ vs __init__ example (GH-9145) by Ethan Furman · 6 years ago
  17. 9430652 bpo-33217: Raise TypeError for non-Enum lookups in Enums (GH-6651) by Rahul Jha · 6 years ago
  18. 2d74838 Fix moduleauthor/sectionauthor directives in Enum (GH-8117) by Andrés Delfino · 6 years ago
  19. e57f91a bpo-33866: enum: Stop using OrderedDict (GH-7698) by INADA Naoki · 6 years ago
  20. a4b1bb4 bpo-31801: Enum: add _ignore_ as class option (#5237) by Ethan Furman · 6 years ago
  21. 0f31c74 Improve enum.Flag code example (GH-5167) by Julian Kahnert · 7 years ago
  22. 6265842 correct documentation for enum.html (#358) by Kartik Anand · 7 years ago
  23. 2a267a1 Issue #29129: Fix typo in "Using auto" section by Berker Peksag · 8 years ago
  24. 23bb6f4 close issue28172: Change all example enum member names to uppercase, per Guido; patch by Chris Angelico. by Ethan Furman · 8 years ago
  25. 3515dcc issue23591: fix flag decomposition and repr by Ethan Furman · 8 years ago
  26. c16595e issue23591: add auto() for auto-generating Enum member values by Ethan Furman · 8 years ago
  27. 54924df improve Enum docs by Ethan Furman · 8 years ago
  28. 6a137e8 add recipes for pseudo-valueless enums by Ethan Furman · 8 years ago
  29. 27682d2 issue23591: more docs; slight change to repr by Ethan Furman · 8 years ago
  30. 25d94bb issue23591: bool(empty_flags) == False; more docs & tests by Ethan Furman · 8 years ago
  31. 65a5a47 issue23591: add docs; code cleanup; more tests by Ethan Furman · 8 years ago
  32. e8e6127 issue26981: add _order_ compatibility shim to enum.Enum by Ethan Furman · 8 years ago
  33. 332dbc7 Issue26988: remove AutoEnum by Ethan Furman · 8 years ago
  34. 43b586b Silence warnings from 'make suspicious' to make the docs buildbot happy by Berker Peksag · 8 years ago
  35. 73fc586 Add AutoEnum: automatically provides next value if missing. Issue 26988. by Ethan Furman · 8 years ago
  36. 2fec611 Issue #24314: Merge doc links from 3.5 by Martin Panter · 8 years ago
  37. bae5d81 Issue #24314: Fix doc links for general attributes like __name__, __dict__ by Martin Panter · 8 years ago
  38. e514093 Issue #27125: Merge typo fixes from 3.5 by Martin Panter · 8 years ago
  39. a90a4a9 Issue #27125: Remove duplicated words from documentation and comments by Martin Panter · 8 years ago
  40. bc1ee46 Issue #25179: Documentation for formatted string literals aka f-strings by Martin Panter · 8 years ago
  41. 46988d3 Merge string formatting doc fixes from 3.5 by Martin Panter · 8 years ago
  42. d5db147 Issue #25179: Preparatory cleanup of existing docs on string formatting by Martin Panter · 8 years ago
  43. 2ae4ea5 use public 'value' by Ethan Furman · 9 years ago
  44. 60255b6 revert change 87a9dff5106c: pure Enum members again evaluate to True; by Ethan Furman · 9 years ago
  45. 748dad5 Close 25594: advise against accessing Enum members from other members by Ethan Furman · 9 years ago
  46. 92e5d2f Close issue25594: advise against accessing Enum members from other members by Ethan Furman · 9 years ago
  47. 91108f0 Issue #25210: Change error message of do_richcompare() by Victor Stinner · 9 years ago
  48. 84835ab Issue #25161: Merge full stops from 3.4 into 3.5 by Martin Panter · 9 years ago
  49. d21e0b5 Issue #25161: Add full stops in documentation; patch by Takase Arihiro by Martin Panter · 9 years ago
  50. 4dde587 whatsnew/3.5: Sync whatsnew with versionadded/versionchanged doc tags by Yury Selivanov · 9 years ago
  51. 61f50bb Issue22997: minor doc update; thanks to Simoen Visser by Ethan Furman · 10 years ago
  52. 8a12329 Issue22997: minor doc update; thanks to Simoen Visser by Ethan Furman · 10 years ago
  53. 8be6fac standardize Enum docs by referring to 'special methods' instead of __dunder__ methods by Ethan Furman · 10 years ago
  54. 93a56cd Doc: fix default role usage (except in unittest mock docs) by Georg Brandl · 10 years ago
  55. 60efd79 Issue #21706: Add a versionchanged directive to the functional API docs. by Berker Peksag · 10 years ago
  56. d9925a1 Close issue21706: add 'start' parameter to functional API by Ethan Furman · 10 years ago
  57. f75805e Issue21738: clarify usage of __new__ in Enum subclasses by Ethan Furman · 10 years ago
  58. dbd1c43 Fix spelling in enum docs. by Zachary Ware · 10 years ago
  59. 3732ed2 Merge in all documentation changes since branching 3.4.0rc1. by Larry Hastings · 10 years ago
  60. 01cc2d5 Issue20653: fix ReST for Enum by Ethan Furman · 10 years ago
  61. 2da9504 Close issue20653: improve functional API docs; minor code changes by Ethan Furman · 10 years ago
  62. ad88d7a Python 3.4.0rc1 release: Updated pydoc topics, fixed suspicious markup errors. by Larry Hastings · 10 years ago
  63. ca1b794 Close issue20534: all pickle protocols now supported. by Ethan Furman · 10 years ago
  64. c72e638 Close issue20412: Updated Enum docs to have referencable Enum and IntEnum classes by Ethan Furman · 10 years ago
  65. fd1ff1c Add versionadded to enum docs. by R David Murray · 11 years ago
  66. 98b28fd Issue #18758: Fixed and improved cross-references. by Serhiy Storchaka · 11 years ago
  67. 17f1edd Add missing comma. by Ezio Melotti · 11 years ago
  68. 93d7dda #19148: fix markup errors and wording in enum docs. Patch by Esa Peuha. by Ezio Melotti · 11 years ago
  69. 9a1daf5 Close #19011: Add documentation on some of the non-standard Enum behavior. by Ethan Furman · 11 years ago
  70. 101e074 Close #18989: enum members will no longer overwrite other attributes, nor be overwritten by them. by Ethan Furman · 11 years ago
  71. 455bfde Close #18980: Enum doc fixes. Patch from Elazar Gershuni. by Ethan Furman · 11 years ago
  72. ed0bf8a Close #18908: Keep Enum docs in their own section. Patch by Elazar Gershuni. by Ethan Furman · 11 years ago
  73. ec15a82 Close #18738: Route __format__ calls to mixed-in type for mixed Enums (such as IntEnum). by Ethan Furman · 11 years ago
  74. 9026262 fixed examples to work with changed attribute names by Ethan Furman · 11 years ago
  75. f24bb35 closes issue18042 -- a `unique` decorator is added to enum.py by Ethan Furman · 11 years ago
  76. e256346 Added rationale for defaulting to 1 in the functional API. by Ethan Furman · 11 years ago
  77. 3fe70b4a Added example to enum docs show access to name and value attributes of enum members. by Ethan Furman · 11 years ago
  78. 15e489f Fix markup of the synopsis along with changing to state what is in the by Brett Cannon · 11 years ago
  79. 6b3d64a Closes issue 17947. Adds PEP-0435 (Adding an Enum type to the Python standard library). by Ethan Furman · 11 years ago