Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Merge branch 'main' into test-unicode-capi-part3
  • Loading branch information
serhiy-storchaka committed Jul 10, 2023
commit 486f2614177efe644d52f1193891643b893afb74
9 changes: 0 additions & 9 deletions Modules/_testcapi/unicode.c
Original file line number Diff line number Diff line change
Expand Up @@ -748,14 +748,6 @@ unicode_decodeutf7stateful(PyObject *self, PyObject *args)
return Py_BuildValue("(Nn)", result, consumed);
}

/* Test _PyUnicode_TransformDecimalAndSpaceToASCII() */
static PyObject *
unicode_transformdecimalandspacetoascii(PyObject *self, PyObject *arg)
{
NULLABLE(arg);
return _PyUnicode_TransformDecimalAndSpaceToASCII(arg);
}

/* Test PyUnicode_DecodeUTF8() */
static PyObject *
unicode_decodeutf8(PyObject *self, PyObject *args)
Expand Down Expand Up @@ -2049,7 +2041,6 @@ static PyMethodDef TestMethods[] = {
{"unicode_decodefsdefault", unicode_decodefsdefault, METH_VARARGS},
{"unicode_decodefsdefaultandsize",unicode_decodefsdefaultandsize,METH_VARARGS},
{"unicode_encodefsdefault", unicode_encodefsdefault, METH_O},
{"unicode_transformdecimalandspacetoascii", unicode_transformdecimalandspacetoascii, METH_O},
{"unicode_concat", unicode_concat, METH_VARARGS},
{"unicode_splitlines", unicode_splitlines, METH_VARARGS},
{"unicode_split", unicode_split, METH_VARARGS},
Expand Down
You are viewing a condensed version of this merge commit. You can view the full changes here.