Return a new :class:`Request` with a shallow :attr:`environ` copy.
(self)
| 1136 | return route[0] if route else None |
| 1137 | |
| 1138 | def copy(self): |
| 1139 | """ Return a new :class:`Request` with a shallow :attr:`environ` copy. """ |
| 1140 | return Request(self.environ.copy()) |
| 1141 | |
| 1142 | def __getitem__(self, key): return self.environ[key] |
| 1143 | def __delitem__(self, key): self[key] = ""; del(self.environ[key]) |
no outgoing calls
no test coverage detected