Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | utils/unicode: PEP8 compliancy (#24668) | Dag Wieers | 2017-05-16 | 1 | -4/+2 |
| | | | - Make PEP8 compliant | ||||
* | Move uses of to_bytes, to_text, to_native to use the module_utils version ↵ | Toshio Kuratomi | 2016-09-06 | 1 | -246/+30 |
| | | | | | | | | (#17423) We couldn't copy to_unicode, to_bytes, to_str into module_utils because of licensing. So once created it we had two sets of functions that did the same things but had different implementations. To remedy that, this change removes the ansible.utils.unicode versions of those functions. | ||||
* | Migrate basestring to a python3 compatible type (#17199) | Toshio Kuratomi | 2016-08-23 | 1 | -9/+6 |
| | |||||
* | Typo fix: Kuraotmi -> Kuratomi | vlna | 2016-06-06 | 1 | -1/+1 |
| | |||||
* | Information on when to use to_str() and what a native string is | Toshio Kuratomi | 2015-10-19 | 1 | -0/+25 |
| | |||||
* | Bundle a new version of python-six for compatibility along with some code to ↵six-compat | Toshio Kuratomi | 2015-10-16 | 1 | -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.unicode | Marius Gedminas | 2015-10-15 | 1 | -0/+7 |
| | | | | | @abadger suggested on IRC that it's useful enough to go into ansible.utils.unicode. | ||||
* | Fix to_bytes(None) on Python 3 | Marius Gedminas | 2015-08-27 | 1 | -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 v2 | James Cammarata | 2015-05-03 | 1 | -16/+21 |
| | |||||
* | Didn't port isbasestring/isunicodestring from kitchen so switch to isinstance | Toshio Kuratomi | 2015-02-12 | 1 | -4/+4 |
| | |||||
* | Add v2's unicode.py to utils so we can use unicode_wrap in the filter_plugins | Toshio Kuratomi | 2015-02-02 | 1 | -0/+248 |