class IncludesDelegateWithoutPrefix(HasProps):
     z = bcpi.Include(IsDelegate, use_prefix=False)
     y = Int(42)  # override the Include
 class IncludesDelegateWithoutPrefixUsingOverride(HasProps):
     z = bcpi.Include(IsDelegate, use_prefix=False)
     y = Override(default="world"
                  )  # override the Include changing just the default
 class IncludesDelegateWithPrefix(HasProps):
     z = bcpi.Include(IsDelegate, use_prefix=True)
     z_y = Int(57)  # override the Include
Example #4
0
 class IncludesDelegateWithoutPrefix(HasProps):
     z = bcpi.Include(IsDelegate, use_prefix=False)
Example #5
0
 class IncludesDelegateWithPrefix(HasProps):
     z = bcpi.Include(IsDelegate, use_prefix=True)
Example #6
0
 class IncludesDelegateWithoutPrefix(HasProps):
     z = bcpi.Include(IsDelegate)
Example #7
0
 class IncludesDelegateWithPrefix(HasProps):
     z = bcpi.Include(IsDelegate, prefix="z")