summaryrefslogtreecommitdiff
path: root/paste/auth/digest.py
Commit message (Collapse)AuthorAgeFilesLines
* Don't raise StopIteration inside a generatorZane Bitter2018-10-231-2/+1
| | | | | | This will cause a runtime error in Python 3.7, due to PEP479. Signed-off-by: Zane Bitter <zbitter@redhat.com>
* Don't raise StopIteration from generator, return insteadMiro Hron?ok2018-06-081-0/+254
See https://www.python.org/dev/peps/pep-0479/