summaryrefslogtreecommitdiff
path: root/paste/util/converters.py
Commit message (Collapse)AuthorAgeFilesLines
* Python 3: Use six types for stringsCyril Roelandt2014-03-181-2/+6
| | | | | * Replace (str, unicode) with (six.binary_type, six.text_type) * Replace basestring with (six.binary_type, six.text_type)
* Paste should not depend upon other paste modules, suchcce2006-09-211-0/+26
as Deploy. This patch moves 'converters' into paste.util since it was being used within paste proper. I'll leave it to those who know Deploy to update that. - copied converters.py from paste.deploy to paste.util - updated files that use paste.deploy.converters