diff options
author | Berker Peksag <berker.peksag@gmail.com> | 2014-10-19 15:07:05 (GMT) |
---|---|---|
committer | Berker Peksag <berker.peksag@gmail.com> | 2014-10-19 15:07:05 (GMT) |
commit | 1ed2e69a4ac1a4ac5a83ce3ab332b3051eaf59f0 (patch) | |
tree | 141b094c4dc7ce5297eb46e9ce881651abf9a71d /Lib/inspect.py | |
parent | 8c06ac5e5817fc7038c92115035107f9ff6c7a64 (diff) | |
parent | f23530f5690d2e37bba7235a6398b2c386a5b485 (diff) | |
download | cpython-1ed2e69a4ac1a4ac5a83ce3ab332b3051eaf59f0.zip cpython-1ed2e69a4ac1a4ac5a83ce3ab332b3051eaf59f0.tar.gz cpython-1ed2e69a4ac1a4ac5a83ce3ab332b3051eaf59f0.tar.bz2 |
Issue #22186: Fix typos in Lib/.
Patch by FĂ©vry Thibault.
Diffstat (limited to 'Lib/inspect.py')
-rw-r--r-- | Lib/inspect.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/inspect.py b/Lib/inspect.py index ae55347..83044b4 100644 --- a/Lib/inspect.py +++ b/Lib/inspect.py @@ -50,7 +50,7 @@ from collections import namedtuple, OrderedDict # Create constants for the compiler flags in Include/code.h # We try to get them from dis to avoid duplication, but fall -# back to hardcoding so the dependency is optional +# back to hard-coding so the dependency is optional try: from dis import COMPILER_FLAG_NAMES as _flag_names except ImportError: |