summaryrefslogtreecommitdiffstats
path: root/Objects
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@gmail.com>2013-11-07 22:12:23 (GMT)
committerVictor Stinner <victor.stinner@gmail.com>2013-11-07 22:12:23 (GMT)
commit66b3270975ebf33596559d70549ea66d1dfd9d9c (patch)
treeb7f29acd7d4b750f9b604509bd282f2eb39bfa5d /Objects
parentbd303c165bc914fc943026ece55f4ebd225614c9 (diff)
downloadcpython-66b3270975ebf33596559d70549ea66d1dfd9d9c.zip
cpython-66b3270975ebf33596559d70549ea66d1dfd9d9c.tar.gz
cpython-66b3270975ebf33596559d70549ea66d1dfd9d9c.tar.bz2
_Py_normalize_encoding(): explain how the value 6 was computed
Diffstat (limited to 'Objects')
-rw-r--r--Objects/unicodeobject.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/Objects/unicodeobject.c b/Objects/unicodeobject.c
index 1375ef3..224a80b 100644
--- a/Objects/unicodeobject.c
+++ b/Objects/unicodeobject.c
@@ -2983,6 +2983,7 @@ _Py_normalize_encoding(const char *encoding,
char *l_end;
if (encoding == NULL) {
+ /* 6 == strlen("utf-8") + 1 */
if (lower_len < 6)
return 0;
strcpy(lower, "utf-8");