summaryrefslogtreecommitdiffstats
path: root/Lib/signal.py
diff options
context:
space:
mode:
authorMartin Panter <vadmium+py@gmail.com>2015-11-02 04:20:33 (GMT)
committerMartin Panter <vadmium+py@gmail.com>2015-11-02 04:20:33 (GMT)
commitd2ad5718ad955a13cf570bacad1d7800d995da33 (patch)
tree8701db861a6620fbb4cd000fd1932e5a0f8f6ffe /Lib/signal.py
parent2eb819f7a82c7eb61f2d253894d9973f0ec21df2 (diff)
downloadcpython-d2ad5718ad955a13cf570bacad1d7800d995da33.zip
cpython-d2ad5718ad955a13cf570bacad1d7800d995da33.tar.gz
cpython-d2ad5718ad955a13cf570bacad1d7800d995da33.tar.bz2
Issue #25523: Further a-to-an corrections new in 3.5
Diffstat (limited to 'Lib/signal.py')
-rw-r--r--Lib/signal.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/signal.py b/Lib/signal.py
index 371d712..9f05c91 100644
--- a/Lib/signal.py
+++ b/Lib/signal.py
@@ -34,7 +34,7 @@ def _int_to_enum(value, enum_klass):
def _enum_to_int(value):
"""Convert an IntEnum member to a numeric value.
- If it's not a IntEnum member return the value itself.
+ If it's not an IntEnum member return the value itself.
"""
try:
return int(value)