diff options
author | Ezio Melotti <ezio.melotti@gmail.com> | 2013-08-25 22:33:30 (GMT) |
---|---|---|
committer | Ezio Melotti <ezio.melotti@gmail.com> | 2013-08-25 22:33:30 (GMT) |
commit | d640fe2af5095c8104a7cf850c2a669c8e864215 (patch) | |
tree | 04fbf97c7f008821c9999531a56bdebc319353d5 /Parser | |
parent | c020e7f8cb04ff81197501781e92a26fa4382135 (diff) | |
parent | 7c4a7e6f3cbd98ad547a3f1661582517612419e3 (diff) | |
download | cpython-d640fe2af5095c8104a7cf850c2a669c8e864215.zip cpython-d640fe2af5095c8104a7cf850c2a669c8e864215.tar.gz cpython-d640fe2af5095c8104a7cf850c2a669c8e864215.tar.bz2 |
#18803: merge with 3.3.
Diffstat (limited to 'Parser')
-rwxr-xr-x | Parser/asdl_c.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Parser/asdl_c.py b/Parser/asdl_c.py index f5cd8e4..5e1066f 100755 --- a/Parser/asdl_c.py +++ b/Parser/asdl_c.py @@ -1056,7 +1056,7 @@ def has_sequence(types, doing_specialization): class StaticVisitor(PickleVisitor): - CODE = '''Very simple, always emit this static code. Overide CODE''' + CODE = '''Very simple, always emit this static code. Override CODE''' def visit(self, object): self.emit(self.CODE, 0, reflow=False) |