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 @@ -596,6 +596,14 @@ APIs:
596596 Objects other than Unicode or its subtypes will cause a :exc:`TypeError`.
597597
598598
599+ .. c:function:: PyObject* PyUnicode_FromOrdinal(int ordinal)
600+
601+ Create a Unicode Object from the given Unicode code point *ordinal*.
602+
603+ The ordinal must be in ``range(0x110000)``. A :exc:`ValueError` is
604+ raised in the case it is not.
605+
606+
599607.. c:function:: PyObject* PyUnicode_FromEncodedObject(PyObject *obj, \
600608 const char *encoding, const char *errors)
601609
Original file line number Diff line number Diff line change @@ -2770,6 +2770,9 @@ PyUnicode_FromFormatV:PyObject*::+1:
27702770PyUnicode_FromFormatV:const char*:format::
27712771PyUnicode_FromFormatV:va_list:args::
27722772
2773+ PyUnicode_FromOrdinal:PyObject*::+1:
2774+ PyUnicode_FromOrdinal:int:ordinal::
2775+
27732776PyUnicode_Append:void:::
27742777PyUnicode_Append:PyObject**:p_left:0:
27752778PyUnicode_Append:PyObject*:right::
You can’t perform that action at this time.
0 commit comments