Commit e3d28878 authored by Mark Florisson's avatar Mark Florisson

Fix cython.typeof() for fused types

parent fc0547e4
...@@ -42,6 +42,8 @@ except ImportError: ...@@ -42,6 +42,8 @@ except ImportError:
basestring = str # Python 3 basestring = str # Python 3
class NotConstant(object): class NotConstant(object):
def __deepcopy__(self, memo):
return self
def __repr__(self): def __repr__(self):
return "<NOT CONSTANT>" return "<NOT CONSTANT>"
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment