summaryrefslogtreecommitdiff
path: root/tests/test_request.py
AgeCommit message (Collapse)Author
2020-07-12Run isort 5.x across code baseBert JW Regeer
2020-04-17inheriting from `object` not necessary in py3Sergey Maranchuk
2020-01-09fix lintMichael Merickel
2020-01-09fix paradigm to avoid incorrect usagesMichael Merickel
It's almost impossible to create a decorator that works on both methods and functions, but more importantly the original approach was sharing a cache across instances of the policy. It needed to be local to the policy instance, but shared across requests. The new example demonstrates that. The cache is also much more flexible in its usage patterns now.
2020-01-08add a RequestLocalCache classMichael Merickel
2019-12-27isortMichael Merickel
2019-03-03Implement new request.has_permission.Theron Luhn
Deleted AuthorizationAPIMixin
2018-11-14move text_, bytes_ and ascii_ to pyramid.util and remove native_Michael Merickel
2018-11-12initial work to remove py2 from the codebaseMichael Merickel
2018-10-15fix lint on testsMichael Merickel
2018-10-15format source using blackMichael Merickel
2018-10-14move tests out of the packageMichael Merickel