summaryrefslogtreecommitdiffstats
path: root/Lib/compiler/consts.py
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2012-07-01 22:01:22 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2012-07-01 22:01:22 (GMT)
commite970dc757cc2795e5dabf542fd002b540b3d7bc2 (patch)
tree6df66247981b6c89a497918c397c301c6e8858ee /Lib/compiler/consts.py
parente683ef55fca11d940794dde000d554e2b6c8f513 (diff)
downloadcpython-e970dc757cc2795e5dabf542fd002b540b3d7bc2.zip
cpython-e970dc757cc2795e5dabf542fd002b540b3d7bc2.tar.gz
cpython-e970dc757cc2795e5dabf542fd002b540b3d7bc2.tar.bz2
Issue #15212: fix typo in compiler module (rename SC_GLOBAL_EXPLICT to SC_GLOBAL_EXPLICIT).
Patch by Arfrever.
Diffstat (limited to 'Lib/compiler/consts.py')
-rw-r--r--Lib/compiler/consts.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/compiler/consts.py b/Lib/compiler/consts.py
index 022f6da..c60b1d0 100644
--- a/Lib/compiler/consts.py
+++ b/Lib/compiler/consts.py
@@ -5,7 +5,7 @@ OP_APPLY = 'OP_APPLY'
SC_LOCAL = 1
SC_GLOBAL_IMPLICIT = 2
-SC_GLOBAL_EXPLICT = 3
+SC_GLOBAL_EXPLICIT = 3
SC_FREE = 4
SC_CELL = 5
SC_UNKNOWN = 6