summaryrefslogtreecommitdiffstats
path: root/Doc/library/enum.rst
Commit message (Expand)AuthorAgeFilesLines
* [3.11] gh-114231: Fix indentation in enum.rst (GH-114232) (#114235)Miss Islington (bot)2024-01-181-1/+1
* [3.11] gh-110631: Fix reST indentation in `Doc/library` (GH-110685) (#110737)Ezio Melotti2023-10-111-14/+14
* [3.11] gh-107700: [Enum] Document that `EnumType` was added in 3.11 (GH-10826...Miss Islington (bot)2023-08-221-0/+4
* [3.11] gh-104659: Consolidate python examples in enum documentation (#104665)...Hugo van Kemenade2023-05-191-6/+7
* gh-103365: [Enum] STRICT boundary corrections (GH-103494)Miss Islington (bot)2023-04-131-2/+3
* gh-98298, gh-74730: [Enum] update docs (GH-103163)Miss Islington (bot)2023-04-031-26/+25
* gh-101739: [Enum] update docs - default boundary for Flag is CONFORM (GH-101746)Miss Islington (bot)2023-02-171-9/+8
* docs: Fix enum reassign `str` documentation (GH-101507)Miss Islington (bot)2023-02-021-2/+2
* [3.11] gh-101100: [Enum] Fix sphinx warnings in docs (GH-101122) (#101173)Miss Islington (bot)2023-01-201-12/+12
* Fix typo in `ReprEnum` documentation (GH-101079)Miss Islington (bot)2023-01-171-1/+1
* Fix typo in `enum` module documentation (GH-100992)Miss Islington (bot)2023-01-121-1/+1
* [Enum] docs: replace 'last value' by 'highest value' for Flag auto (GH-100709)Miss Islington (bot)2023-01-031-3/+3
* gh-100174: [Enum] Correct PowersOfThree example. (GH-100178)Miss Islington (bot)2022-12-111-2/+2
* [Enum] Fix typos in the documentation (GH-99960)Miss Islington (bot)2022-12-061-26/+26
* gh-93464: [Enum] Add versionchanged tag (GH-99997)Miss Islington (bot)2022-12-051-0/+5
* [3.11] gh-99304: [Enum] clarify what constitutes a flag alias (GH-99395) (GH-...Miss Islington (bot)2022-11-121-12/+27
* gh-93464: [Enum] fix auto() failure during multiple assignment (GH-99148)Miss Islington (bot)2022-11-061-3/+12
* [Enum docs]: fix order of arguments to isinstance() (GH-98542)Miss Islington (bot)2022-10-221-1/+1
* gh-98298: [Enum] document ReprEnum, global_enum, and show_flag_values (GH-98455)Miss Islington (bot)2022-10-211-1/+47
* GH-95172 Make the same version `versionadded` oneline (GH-95172)Miss Islington (bot)2022-10-051-2/+1
* gh-91456: [Enum] Deprecate default auto() behavior with mixed value types (GH...Miss Islington (bot)2022-06-231-0/+4
* [3.11] Restore default role check in `make check`. (GH-92290) (#92821)Ezio Melotti2022-05-151-2/+2
* Enum docs: Remove unnecessary apostrophes (#92382)Alex Waygood2022-05-061-2/+2
* gh-78157: [Enum] nested classes will not be members in 3.13 (GH-92366)Ethan Furman2022-05-061-0/+21
* bpo-46586: Fix documentation links (GH-31216)Meer Suri2022-02-121-1/+1
* bpo-46569: [Enum] fix typo in `StrEnum` docs (GH-31007)Nikita Sobolev2022-02-031-1/+1
* bpo-40066: [Enum] skip failing doc test (GH-30637)Kumar Aditya2022-01-171-92/+173
* Revert "bpo-40066: [Enum] update str() and format() output (GH-30582)" (GH-3...Victor Stinner2022-01-171-173/+92
* bpo-40066: [Enum] update str() and format() output (GH-30582)Ethan Furman2022-01-161-92/+173
* 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