summaryrefslogtreecommitdiff
path: root/lib/ansible/utils/unicode.py
Commit message (Collapse)AuthorAgeFilesLines
* Bundle a new version of python-six for compatibility along with some code to ↵six-compatToshio Kuratomi2015-10-161-1/+1
| | | | make it easy for distributions to override the bunndled copy if they have a new enough version.
* Move to_str alias into ansible.utils.unicodeMarius Gedminas2015-10-151-0/+7
| | | | | @abadger suggested on IRC that it's useful enough to go into ansible.utils.unicode.
* Fix to_bytes(None) on Python 3Marius Gedminas2015-08-271-1/+1
| | | | | | You cannot call bytes(obj) to get a simple representation of obj on Python 3! E.g. bytes(42) returns a byte string with 42 NUL characters instead of b'42'.
* Making the switch to v2James Cammarata2015-05-031-16/+21
|
* Didn't port isbasestring/isunicodestring from kitchen so switch to isinstanceToshio Kuratomi2015-02-121-4/+4
|
* Add v2's unicode.py to utils so we can use unicode_wrap in the filter_pluginsToshio Kuratomi2015-02-021-0/+248