From 52318d6215f9f9626d38a9b81b52d411dbbdb36a Mon Sep 17 00:00:00 2001 From: Georg Brandl Date: Wed, 6 Sep 2006 07:06:08 +0000 Subject: Patch #1550786: ellipsis literal. --- Lib/compiler/pycodegen.py | 3 --- 1 file changed, 3 deletions(-) (limited to 'Lib/compiler/pycodegen.py') 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: -- cgit v1.2.1