(self, _map=map, **kwds)
| 138 | 'Point class with optimized _make() and _replace() without error-checking' |
| 139 | _make = classmethod(tuple.__new__) |
| 140 | def _replace(self, _map=map, **kwds): |
| 141 | return self._make(_map(kwds.get, ('x', 'y'), self)) |
| 142 | |
| 143 | print Point(11, 22)._replace(x=100) |
| 144 |
no test coverage detected