summaryrefslogtreecommitdiff
path: root/Lib/compiler/pycodegen.py
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2006-09-06 07:06:08 +0000
committerGeorg Brandl <georg@python.org>2006-09-06 07:06:08 +0000
commit52318d6215f9f9626d38a9b81b52d411dbbdb36a (patch)
tree72563f6321f9265fb9d77702ee729e68048bdd07 /Lib/compiler/pycodegen.py
parent7cae87ca7b0a3a7ce497cbd335c8ec82fe680476 (diff)
downloadcpython-git-52318d6215f9f9626d38a9b81b52d411dbbdb36a.tar.gz
Patch #1550786: ellipsis literal.
Diffstat (limited to 'Lib/compiler/pycodegen.py')
-rw-r--r--Lib/compiler/pycodegen.py3
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: