diff options
author | Georg Brandl <georg@python.org> | 2006-09-06 07:06:08 +0000 |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2006-09-06 07:06:08 +0000 |
commit | 52318d6215f9f9626d38a9b81b52d411dbbdb36a (patch) | |
tree | 72563f6321f9265fb9d77702ee729e68048bdd07 /Lib/compiler/pycodegen.py | |
parent | 7cae87ca7b0a3a7ce497cbd335c8ec82fe680476 (diff) | |
download | cpython-git-52318d6215f9f9626d38a9b81b52d411dbbdb36a.tar.gz |
Patch #1550786: ellipsis literal.
Diffstat (limited to 'Lib/compiler/pycodegen.py')
-rw-r--r-- | Lib/compiler/pycodegen.py | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/Lib/compiler/pycodegen.py b/Lib/compiler/pycodegen.py index e0c3a1048d..83d0481fb6 100644 --- a/Lib/compiler/pycodegen.py +++ b/Lib/compiler/pycodegen.py @@ -1214,9 +1214,6 @@ class CodeGenerator: # object constructors - def visitEllipsis(self, node): - self.emit('LOAD_CONST', Ellipsis) - def visitTuple(self, node): self.set_lineno(node) for elt in node.nodes: |