summaryrefslogtreecommitdiff
path: root/paste/auth
Commit message (Collapse)AuthorAgeFilesLines
* Fix grantip on Python 3Victor Stinner2015-04-221-1/+1
|
* Port paste.auth to Python 3Victor Stinner2015-04-212-11/+35
| | | | | | * md5() and hmac expects bytes: on Python 3, encode text to utf-8 * Don't compare None with int * HTTP body must be bytes
* Strip trailing spacesVictor Stinner2015-04-215-15/+15
|
* Python 3: fix more submodulesVictor Stinner2014-03-191-4/+4
| | | | | * print syntax * replace "except Exception, exc:" with "except Exception as exc:"
* Python 3: Add b prefix to literal binary stringsCyril Roelandt2014-03-181-1/+1
|
* Python 3: Replace "dict.has_key(key)" with "key in dict"Cyril Roelandt2014-03-181-1/+1
|
* Python 3: Replace basestring with six.string_typesCyril Roelandt2014-03-183-5/+7
|
* Python 3: don't use tuples in function prototypeCyril Roelandt2014-03-181-1/+1
| | | | Unpack explicitly in the body of the function
* Python 3: Replace "except Exception, exc" with "except Exception as exc:"Cyril Roelandt2014-03-181-1/+1
|
* Python 3: use new names of standard library modulesCyril Roelandt2014-03-183-7/+11
| | | | Use "try/except ImportError" to try Python 2 and Python 3 names.
* allow strings and lists to be used in cookie tokensKristian Kvilekval2012-10-1210-0/+2043