summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
2020-09-29Jigger the switch to pass lintSteve Piercy
2020-09-29Blackify for v20.8b1Steve Piercy
2020-08-13Clarify that the string 'None' should be the value for `samesite`Steve Piercy
- See https://github.com/Pylons/pyramid/issues/2733#issuecomment-672936565
2020-07-12Run isort 5.x across code baseBert JW Regeer
2020-07-02improve docÉric Araujo
Co-Authored-By: Steve Piercy
2020-07-02add tests and docsÉric Araujo
2020-06-22first shot for #1602Éric Araujo
2020-06-04Merge pull request #3594 from raverat/fix/handle_non_string_object_aslist_methodMichael Merickel
Handle non string object passed to aslist method
2020-06-03Update src/pyramid/settings.pyRavera Thibault
Co-authored-by: Steve Piercy <web@stevepiercy.com>
2020-06-03Handle non string object passed to aslist methodThibault Ravera
2020-06-02fix lint for previous change.Antti Haapala
2020-06-01Fixing #3592 - output diagnostic messages to stderr, not stdoutAntti Haapala
2020-05-31grammar fixSteve Piercy
2020-05-31s/the/a in src/pyramid/view.pySteve Piercy
Co-authored-by: Bert JW Regeer <xistence@0x58.com>
2020-05-30Add required line break for end of bulleted listSteve Piercy
2020-05-30Rewrite warning to note about Venusian scanning limitationsSteve Piercy
2020-05-30Add warning about venusian limitation of only scanning for *.py filesMirko Vogt
2020-05-28Fix linting errorsBert JW Regeer
2020-05-07better wordingÉric Araujo
2020-05-07merge masterÉric Araujo
2020-05-06Cleanup string formattingBert JW Regeer
2020-05-06Remove unnecessary coding linesBert JW Regeer
2020-05-06Remove object from classBert JW Regeer
2020-05-06set() -> {}Bert JW Regeer
2020-05-06more rewordingÉric Araujo
2020-05-05reword docÉric Araujo
2020-05-04support multiple values for header predicateÉric Araujo
2020-04-19remove __unicode__ methodSergey Maranchuk
2020-04-19predicate order must be integerSergey Maranchuk
2020-04-19invoke super() without argumentsSergey Maranchuk
2020-04-19rename __nonzero__() to __bool__()Sergey Maranchuk
2020-04-17inheriting from `object` not necessary in py3Sergey Maranchuk
2020-01-18remove unnecessary usage of text_Michael Merickel
2020-01-18simplify SettableProperty to be a non-data-descriptor to avoid caching itselfMichael Merickel
2020-01-18use standard detection for data descriptorsMichael Merickel
2020-01-17Merge pull request #3563 from mmerickel/move-acl-security-to-authorizationMichael Merickel
Move acl security to authorization
2020-01-16merge masterÉric Araujo
2020-01-16Merge branch 'master' into move-acl-security-to-authorizationMichael Merickel
2020-01-14fix commentMichael Merickel
2020-01-14apply more review fixes, minimize some diffsÉric Araujo
2020-01-12fix lintMichael Merickel
2020-01-12move doc references from pyramid.security to pyramid.authorizationMichael Merickel
2020-01-12move acl helper apis from pyramid.security to pyramid.authorizationMichael Merickel
2020-01-11remove obsolete bitÉric Araujo
2020-01-11replace "third-party" with "custom"Éric Araujo
2020-01-11merge masterÉric Araujo
2020-01-09Merge branch 'master' into security-docsMichael Merickel
2020-01-09clarify the docsMichael 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-08grammar fixesMichael Merickel