Commit 86f38e66 authored by Stefan Behnel's avatar Stefan Behnel

better debug output

parent 808ed5c2
......@@ -32,7 +32,10 @@ try:
except NameError:
from sets import Set as set
class NotConstant(object): pass # just for the name
class NotConstant(object):
def __repr__(self):
return "<NOT CONSTANT>"
not_a_constant = NotConstant()
constant_value_not_set = object()
......
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