Commit ee51cffc authored by Raymond Hettinger's avatar Raymond Hettinger

Fix whitespace in example code.

parent df90ee6c
...@@ -540,8 +540,8 @@ Example: ...@@ -540,8 +540,8 @@ Example:
raise ValueError('Got unexpected field names: %r' % kwds.keys()) raise ValueError('Got unexpected field names: %r' % kwds.keys())
return result return result
<BLANKLINE> <BLANKLINE>
def __getnewargs__(self): def __getnewargs__(self):
return tuple(self) return tuple(self)
<BLANKLINE> <BLANKLINE>
x = property(itemgetter(0)) x = property(itemgetter(0))
y = property(itemgetter(1)) y = property(itemgetter(1))
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment