Important behavior change : to add default_multi value, now use Multi.append(), not Multi.append(None)

This commit is contained in:
2013-12-09 17:59:39 +01:00
parent bb1f6947e3
commit 73745be440
4 changed files with 29 additions and 7 deletions

View File

@ -242,6 +242,12 @@ multitypes = MultiTypeModule()
populate_multitypes()
# ____________________________________________________________
class Undefined():
pass
undefined = Undefined()
# ____________________________________________________________
class Property(object):
"a property is responsible of the option's value access rules"