summaryrefslogtreecommitdiffstats
path: root/Include
diff options
context:
space:
mode:
authorEzio Melotti <ezio.melotti@gmail.com>2012-10-05 00:33:31 (GMT)
committerEzio Melotti <ezio.melotti@gmail.com>2012-10-05 00:33:31 (GMT)
commite7f90375b175ed9e610a1de3b5c910f9271375ad (patch)
treeaaa4d1c1f7079d7f687407d2373f43f184030531 /Include
parent1929407406966f9f2093a9e6b421cad39361dbb4 (diff)
downloadcpython-e7f90375b175ed9e610a1de3b5c910f9271375ad.zip
cpython-e7f90375b175ed9e610a1de3b5c910f9271375ad.tar.gz
cpython-e7f90375b175ed9e610a1de3b5c910f9271375ad.tar.bz2
#16127: remove outdated references to narrow builds. Patch by Serhiy Storchaka.
Diffstat (limited to 'Include')
-rw-r--r--Include/unicodeobject.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/Include/unicodeobject.h b/Include/unicodeobject.h
index 135e469..a8f5b5d 100644
--- a/Include/unicodeobject.h
+++ b/Include/unicodeobject.h
@@ -1022,8 +1022,7 @@ PyAPI_FUNC(void*) _PyUnicode_AsKind(PyObject *s, unsigned int kind);
/* Create a Unicode Object from the given Unicode code point ordinal.
- The ordinal must be in range(0x10000) on narrow Python builds
- (UCS2), and range(0x110000) on wide builds (UCS4). A ValueError is
+ The ordinal must be in range(0x110000). A ValueError is
raised in case it is not.
*/