summaryrefslogtreecommitdiffstats
path: root/Doc/library/enum.rst
Commit message (Expand)AuthorAgeFilesLines
* bpo-46157: fix typo in docs (GH-30237)Kumar Aditya2021-12-231-1/+1
* bpo-45535: Improve output of Enum ``dir()`` (GH-29316)Alex Waygood2021-12-021-2/+3
* bpo-45740: [Enum] add versionadded markers to docs (GH-29443)Ethan Furman2021-11-061-0/+1
* [doc] Fix typos found using codespell (GH-28744)Christian Clauss2021-10-051-2/+2
* bpo-44559: [Enum] correct `versionadded` to 3.11 for new features (GH-27388)Steffen Zeile2021-07-271-6/+6
* Fix typos in `Weekday.today` example (GH-27363)Steffen Zeile2021-07-261-1/+1
* bpo-43945: [Enum] reduce scope of new format() behavior (GH-26752)Ethan Furman2021-06-181-4/+29
* bpo-44342: [Enum] sync current docs to 3.10 (GH-26750)Ethan Furman2021-06-161-1/+1
* bpo-44242: [Enum] remove missing bits test from Flag creation (GH-26586)Ethan Furman2021-06-091-4/+82
* Remove duplicate words in docs. (GH-26167)Mariusz Felisiak2021-05-211-2/+2
* bpo-38250: add version added for FlagBoundary (GH-25820)Shantanu2021-05-141-0/+5
* fix enum.property reference in docs (GH-25875)Jelle Zijlstra2021-05-041-1/+1
* bpo-43957: [Enum] Deprecate ``TypeError`` from containment checks. (GH-25670)Ethan Furman2021-04-271-0/+6
* bpo-38659: [Enum] add _simple_enum decorator (GH-25497)Ethan Furman2021-04-211-1/+0
* Revert "bpo-38659: [Enum] add _simple_enum decorator (GH-25285)" (GH-25476)Ethan Furman2021-04-201-0/+1
* bpo-38659: [Enum] add _simple_enum decorator (GH-25285)Ethan Furman2021-04-201-1/+0
* Enum: add (re)import of Flag for doctests (GH-25118)Ethan Furman2021-03-311-4/+4
* bpo-40066: Enum: modify `repr()` and `str()` (GH-22392)Ethan Furman2021-03-311-1197/+441
* bpo-43162: [Enum] update docs, renable doc tests (GH-24487)Ethan Furman2021-03-031-5/+6
* Fix grammar in enum documentation. (GH-24689)Mariatta Wijaya2021-03-011-1/+1
* Fix minor typo in the rest format in the enum docs (GH-24335)Pablo Galindo2021-01-251-1/+1
* bpo-38250: [Enum] single-bit flags are canonical (GH-24215)Ethan Furman2021-01-251-27/+135
* [doc] Fix a few margins due to bad markup (GH-23619)Andre Delfino2020-12-171-1/+1
* bpo-42385: [Enum] add `_generate_next_value_` to StrEnum (GH-23735)Ethan Furman2020-12-101-2/+4
* bpo-42517: [Enum] do not convert private names into members (GH-23722)Ethan Furman2020-12-101-0/+9
* bpo-41816: `StrEnum.__str__` is `str.__str__` (GH-22362)Ethan Furman2020-09-221-0/+15
* Enum: add extended AutoNumber example (GH-22349)Ethan Furman2020-09-221-0/+26
* bpo-41816: add `StrEnum` (GH-22337)Ethan Furman2020-09-221-0/+38
* Enum: make `Flag` and `IntFlag` members iterable (GH-22221)Ethan Furman2020-09-161-0/+15
* bpo-40721: add note about enum member name case (GH-22231)Ethan Furman2020-09-141-0/+6
* bpo-40204: Add :noindex: in the documentation (GH-21859)Victor Stinner2020-08-131-0/+1
* Remove trailing >>> in enum docs (GH-21358)E-Paine2020-07-091-1/+0
* bpo-40025: Require _generate_next_value_ to be defined before members (GH-19098)Ethan Onstott2020-04-281-0/+4
* bpo-39234: `enum.auto()` default initial value as 1 (GH-17878)YoSTEALTH2020-01-061-1/+1
* bpo-39234: Doc: `enum.auto()` incrementation value not specified. (GH-17872)YoSTEALTH2020-01-061-1/+1
* Minor documentation fixes on library/enum (GH-15234)Antoine2019-08-201-5/+4
* bpo-37479: on Enum subclasses with mixins, __format__ uses overridden __str__...thatneat2019-07-041-3/+5
* Fix typo: class declaration (GH-11678)nu_no2019-01-271-1/+1
* bpo-29577: Enum: mixin classes don't mix well with already mixed Enums (GH-9328)Ethan Furman2018-09-221-3/+10
* bpo-33437: add __new__ vs __init__ example (GH-9145)Ethan Furman2018-09-121-0/+31
* bpo-33217: Raise TypeError for non-Enum lookups in Enums (GH-6651)Rahul Jha2018-09-101-1/+1
* Fix moduleauthor/sectionauthor directives in Enum (GH-8117)Andrés Delfino2018-07-071-4/+4
* bpo-33866: enum: Stop using OrderedDict (GH-7698)INADA Naoki2018-06-181-2/+2
* bpo-31801: Enum: add _ignore_ as class option (#5237)Ethan Furman2018-01-221-1/+25
* Improve enum.Flag code example (GH-5167)Julian Kahnert2018-01-131-1/+1
* correct documentation for enum.html (#358)Kartik Anand2017-02-281-2/+2
* Issue #29129: Fix typo in "Using auto" sectionBerker Peksag2017-01-021-1/+1
* close issue28172: Change all example enum member names to uppercase, per Guid...Ethan Furman2016-11-211-172/+173
* issue23591: fix flag decomposition and reprEthan Furman2016-09-181-0/+22
* issue23591: add auto() for auto-generating Enum member valuesEthan Furman2016-09-111-16/+83