diff -r 26c02bd94bd9 -r b4ff7392003a tuikit/core/coords.py --- a/tuikit/core/coords.py Sun Feb 15 12:48:23 2015 +0100 +++ b/tuikit/core/coords.py Sun Feb 15 12:52:46 2015 +0100 @@ -83,7 +83,7 @@ # string representation def __repr__(self): - return '{0.__class__.__name__}(x={0.x},y={0.y})'.format(self) + return '{0.__class__.__name__}(x={0.x}, y={0.y})'.format(self) def immutable(self): return ImmutablePoint(*self) @@ -136,7 +136,7 @@ return (self.w, self.h)[key] def __repr__(self): - return '{0.__class__.__name__}(w={0.w},h={0.h})'.format(self) + return '{0.__class__.__name__}(w={0.w}, h={0.h})'.format(self) def update(self, *args, **kwargs): """Update size. @@ -219,7 +219,7 @@ return Rect(x, y, w, h) def __repr__(self): - return '{0.__class__.__name__}(x={0.x},y={0.y},w={0.w},h={0.h})'.format(self) + return '{0.__class__.__name__}(x={0.x}, y={0.y}, w={0.w}, h={0.h})'.format(self) def __contains__(self, point): """Test if point is positioned inside rectangle.