The value of ``PATH_INFO`` with exactly one prefixed slash (to fix broken clients and avoid the "empty path" edge case).
(self)
| 1570 | |
| 1571 | @property |
| 1572 | def path(self): |
| 1573 | """ The value of ``PATH_INFO`` with exactly one prefixed slash (to fix |
| 1574 | broken clients and avoid the "empty path" edge case). """ |
| 1575 | return '/' + self.environ.get('PATH_INFO', '').lstrip('/') |
| 1576 | |
| 1577 | @property |
| 1578 | def method(self): |