2367
2369
elif isinstance(default, (str, unicode, bool, int, float)):
2368
2370
# Rely on python to convert strings, booleans and integers
2369
2371
self.default = u'%s' % (default,)
2371
2375
# other python objects are not expected
2372
2376
raise AssertionError('%r is not supported as a default value'