Commit 181aed38 authored by Vincent Pelletier's avatar Vincent Pelletier

Allow (de)serialising True & False built-in instances.

parent dc35342a
...@@ -62,6 +62,8 @@ class BuildoutSerialiser(object): ...@@ -62,6 +62,8 @@ class BuildoutSerialiser(object):
'list': list, 'list': list,
'str': str, 'str': str,
'tuple': tuple, 'tuple': tuple,
'False': False,
'True': True,
}} }}
def loads(self, value): def loads(self, value):
......
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