69,70c69,70
< raise AttributeError, \
< "cannot set attribute '%s' on proxy object" % attr
---
> raise AttributeError(
> "cannot set attribute '%s' on proxy object" % attr)
77,78c77,78
< raise TypeError, \
< "Proxy multiplier must be a constant or a proxy to a param"
---
> raise TypeError(
> "Proxy multiplier must be a constant or a proxy to a param")
91,92c91,92
< raise TypeError, \
< "Proxy multiplier must be a numerical param"
---
> raise TypeError(
> "Proxy multiplier must be a numerical param")
119,121c119,121
< raise AttributeError, \
< "Can't resolve proxy '%s' of type '%s' from '%s'" % \
< (self.path(), self._pdesc.ptype_str, base.path())
---
> raise AttributeError(
> "Can't resolve proxy '%s' of type '%s' from '%s'" % \
> (self.path(), self._pdesc.ptype_str, base.path()))
125c125
< raise RuntimeError, "Cycle in unproxy"
---
> raise RuntimeError("Cycle in unproxy")
160c160
< raise AttributeError, "Attribute reference on bound proxy"
---
> raise AttributeError("Attribute reference on bound proxy")
171c171
< raise TypeError, "Proxy object requires integer index"
---
> raise TypeError("Proxy object requires integer index")
173c173
< raise AttributeError, "Index operation on bound proxy"
---
> raise AttributeError("Index operation on bound proxy")