[Jython-checkins] jython: Fixed typo in compiler/pycodegen.py, fixes #2032.

alex.gronholm jython-checkins at python.org
Wed Aug 6 18:59:54 CEST 2014


http://hg.python.org/jython/rev/c31173ad9f71
changeset:   7356:c31173ad9f71
user:        Alex Grönholm <alex.gronholm at nextday.fi>
date:        Wed Aug 06 19:57:33 2014 +0300
summary:
  Fixed typo in compiler/pycodegen.py, fixes #2032.

files:
  Lib/compiler/pycodegen.py |  2 +-
  1 files changed, 1 insertions(+), 1 deletions(-)


diff --git a/Lib/compiler/pycodegen.py b/Lib/compiler/pycodegen.py
--- a/Lib/compiler/pycodegen.py
+++ b/Lib/compiler/pycodegen.py
@@ -8,7 +8,7 @@
 
 from compiler import ast, parse, walk, syntax
 from compiler import misc, future, symbols
-from compiler.consts import SC_LOCAL, SC_GLOBAL_IMPLICIT, SC_GLOBAL_EXPLICT, \
+from compiler.consts import SC_LOCAL, SC_GLOBAL_IMPLICIT, SC_GLOBAL_EXPLICIT, \
      SC_FREE, SC_CELL
 from compiler.consts import (CO_VARARGS, CO_VARKEYWORDS, CO_NEWLOCALS,
      CO_NESTED, CO_GENERATOR, CO_FUTURE_DIVISION,

-- 
Repository URL: http://hg.python.org/jython


More information about the Jython-checkins mailing list