From eafa7af6abbb0d9767bf02fcdd2dccc90d6cf823 Mon Sep 17 00:00:00 2001 From: HendrikRiedmann Date: Sun, 12 Jul 2009 13:12:48 -0400 Subject: [PATCH] Get rid of unnecessary Mapper constructor. --- pymbolic/mapper/__init__.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/pymbolic/mapper/__init__.py b/pymbolic/mapper/__init__.py index c549938..3df54ee 100644 --- a/pymbolic/mapper/__init__.py +++ b/pymbolic/mapper/__init__.py @@ -16,9 +16,6 @@ except ImportError: class Mapper(object): - def __init__(self, recurse=True): - self.Recurse = True - def handle_unsupported_expression(self, expr, *args): raise ValueError, "%s cannot handle expressions of type %s" % ( self.__class__, expr.__class__) -- GitLab