diff options
author | Ville Skyttä <ville.skytta@iki.fi> | 2017-08-03 09:00:59 +0300 |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2017-08-03 09:00:59 +0300 |
commit | 49b2734bf12dc1cda80fd73d3ec8896ae3e362f2 (patch) | |
tree | 049e496126aae48bf6d7c3ddbb7f145e04e53e97 /Lib/enum.py | |
parent | Add @bitdancer as codeowner of email related stuff. (GH-2987) (diff) | |
download | cpython-49b2734bf12dc1cda80fd73d3ec8896ae3e362f2.tar.gz cpython-49b2734bf12dc1cda80fd73d3ec8896ae3e362f2.tar.bz2 cpython-49b2734bf12dc1cda80fd73d3ec8896ae3e362f2.zip |
Spelling fixes (#2902)
Diffstat (limited to 'Lib/enum.py')
-rw-r--r-- | Lib/enum.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/enum.py b/Lib/enum.py index 73dd613887d..6d90f7dd65f 100644 --- a/Lib/enum.py +++ b/Lib/enum.py @@ -840,7 +840,7 @@ def _decompose(flag, value): not_covered = value negative = value < 0 # issue29167: wrap accesses to _value2member_map_ in a list to avoid race - # conditions between iterating over it and having more psuedo- + # conditions between iterating over it and having more pseudo- # members added to it if negative: # only check for named flags |