[issue31873] Inconsistent capitalization of proper noun - Unicode.

Marc-Andre Lemburg report at bugs.python.org
Sun Nov 4 17:02:49 EST 2018


Marc-Andre Lemburg <mal at egenix.com> added the comment:

If you want to do this correctly, you have to check each case:

* if "unicode object" refers to a C PyUnicode object, it's probably better to use "PyUnicode object"
* if "unicode object" refers to a C PyObject object, with type "unicode", it's probably better to leave it as is
* if "unicode object" refers to a Python unicode object, it's probably better to call it "Unicode string object" or just "string object" in Python 3
* if "unicode object" does not indicate whether Python or C is meant, "Unicode object" is probably better

----------

_______________________________________
Python tracker <report at bugs.python.org>
<https://bugs.python.org/issue31873>
_______________________________________


More information about the Python-bugs-list mailing list