summaryrefslogtreecommitdiff
path: root/paste/auth
Commit message (Collapse)AuthorAgeFilesLines
* Fix AuthBasicAuthenticator base64 decoding to work on py3 (#61)Dave Brondsema2020-10-121-1/+3
|
* Patching auth ticket to be python3 compatible (#56)TilmanSchaefer2020-07-221-7/+7
| | | * Patching auth ticket to be python3 compatible
* Update auth_tkt.py for python3 compatibility (#45)marzetas2020-01-261-20/+30
| | | | | | | | * Update auth_tkt.py urllib imports to work in python3 * Add tests for auth AuthTicket * Adapt auth_tkt to be python2 and python3 compatible
* Fix deprecation warnings (#41)Xtreak2020-01-051-4/+11
| | | | | | | | * Use is_alive instead of isAlive for Python 3.9 compatibility. * Use encodebytes instead of deprecated encodestring. * Fix Python 2 and 3 compatibility for base64.
* 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-0810-0/+2073
See https://www.python.org/dev/peps/pep-0479/