File tree Expand file tree Collapse file tree 2 files changed +11
-0
lines changed Expand file tree Collapse file tree 2 files changed +11
-0
lines changed Original file line number Diff line number Diff line change @@ -589,6 +589,14 @@ APIs:
589589 Objects other than Unicode or its subtypes will cause a :exc:`TypeError`.
590590
591591
592+ .. c:function:: PyObject* PyUnicode_FromOrdinal(int ordinal)
593+
594+ Create a Unicode Object from the given Unicode code point *ordinal*.
595+
596+ The ordinal must be in ``range(0x110000)``. A :exc:`ValueError` is
597+ raised in the case it is not.
598+
599+
592600.. c:function:: PyObject* PyUnicode_FromEncodedObject(PyObject *obj, \
593601 const char *encoding, const char *errors)
594602
Original file line number Diff line number Diff line change @@ -2756,6 +2756,9 @@ PyUnicode_FromFormatV:PyObject*::+1:
27562756PyUnicode_FromFormatV:const char*:format::
27572757PyUnicode_FromFormatV:va_list:args::
27582758
2759+ PyUnicode_FromOrdinal:PyObject*::+1:
2760+ PyUnicode_FromOrdinal:int:ordinal::
2761+
27592762PyUnicode_GetDefaultEncoding:const char*:::
27602763PyUnicode_GetDefaultEncoding::void::
27612764
You can’t perform that action at this time.
0 commit comments