The value of ``PATH_INFO`` with exactly one prefixed slash (to fix broken clients and avoid the "empty path" edge case).
(self)
| 868 | |
| 869 | @property |
| 870 | def path(self): |
| 871 | ''' The value of ``PATH_INFO`` with exactly one prefixed slash (to fix |
| 872 | broken clients and avoid the "empty path" edge case). ''' |
| 873 | return '/' + self.environ.get('PATH_INFO','').lstrip('/') |
| 874 | |
| 875 | @property |
| 876 | def method(self): |