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):
'list': list,
'str': str,
'tuple': tuple,
'False': False,
'True': True,
}}
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