Return false if cookies should not be returned, given cookie path.
(self, path, request)
| 867 | return True |
| 868 | |
| 869 | def path_return_ok(self, path, request): |
| 870 | """Return false if cookies should not be returned, given cookie path. |
| 871 | """ |
| 872 | return True |
| 873 | |
| 874 | |
| 875 | class DefaultCookiePolicy(CookiePolicy): |