mirror of
https://github.com/python/cpython.git
synced 2025-08-03 08:34:29 +00:00
Drop claims that Unicode always means UCS-2. Fixes #881861.
This commit is contained in:
parent
4a9b8069e0
commit
9bc4f2def3
2 changed files with 10 additions and 9 deletions
|
@ -780,14 +780,14 @@ PyArg_ParseTuple(args, "O|O:ref", &object, &callback)
|
|||
Same as \samp{s\#}.
|
||||
|
||||
\item[\samp{u} (Unicode string) {[Py_UNICODE *]}]
|
||||
Convert a null-terminated buffer of Unicode (UCS-2) data to a
|
||||
Python Unicode object. If the Unicode buffer pointer is \NULL,
|
||||
\code{None} is returned.
|
||||
Convert a null-terminated buffer of Unicode (UCS-2 or UCS-4)
|
||||
data to a Python Unicode object. If the Unicode buffer pointer
|
||||
is \NULL, \code{None} is returned.
|
||||
|
||||
\item[\samp{u\#} (Unicode string) {[Py_UNICODE *, int]}]
|
||||
Convert a Unicode (UCS-2) data buffer and its length to a Python
|
||||
Unicode object. If the Unicode buffer pointer is \NULL, the
|
||||
length is ignored and \code{None} is returned.
|
||||
Convert a Unicode (UCS-2 or UCS-4) data buffer and its length
|
||||
to a Python Unicode object. If the Unicode buffer pointer
|
||||
is \NULL, the length is ignored and \code{None} is returned.
|
||||
|
||||
\item[\samp{i} (integer) {[int]}]
|
||||
Convert a plain C \ctype{int} to a Python integer object.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue