because it was clashing with a method of the same name. The new attribute
is called "overlayed".
--HG--
branch : trunk
*before* the loop. (#331)
- Added support for optional `scoped` modifier to blocks.
- Added support for line-comments.
+- Renamed (undocumented) attribute overlay to overlayed on the environment
+ because it was clashing with a method of the same name. The new attribute
+ is called "overlayed".
Version 2.1.1
-------------
sandboxed = False
#: True if the environment is just an overlay
- overlay = False
+ overlayed = False
#: the environment this environment is linked to if it is an overlay
linked_to = None
rv = object.__new__(self.__class__)
rv.__dict__.update(self.__dict__)
- rv.overlay = True
+ rv.overlayed = True
rv.linked_to = self
for key, value in args.iteritems():