From 23507e6124041ed17f39db211e802495e37520e7 Mon Sep 17 00:00:00 2001 From: Jan Cholasta Date: Fri, 11 Sep 2015 13:43:28 +0200 Subject: Alias "unicode" to "str" under Python 3 The six way of doing this is to replace all occurences of "unicode" with "six.text_type". However, "unicode" is non-ambiguous and (arguably) easier to read. Also, using it makes the patches smaller, which should help with backporting. Reviewed-By: Petr Viktorin --- ipapython/dn.py | 3 +++ 1 file changed, 3 insertions(+) (limited to 'ipapython/dn.py') diff --git a/ipapython/dn.py b/ipapython/dn.py index a3b20121a..5a42ab37e 100644 --- a/ipapython/dn.py +++ b/ipapython/dn.py @@ -425,6 +425,9 @@ from ldap.dn import str2dn, dn2str from ldap import DECODING_ERROR import six +if six.PY3: + unicode = str + __all__ = 'AVA', 'RDN', 'DN' def _adjust_indices(start, end, length): -- cgit