summaryrefslogtreecommitdiffstats
path: root/contrib/tools/python/src/Include/unicodeobject.h
diff options
context:
space:
mode:
authorarcadia-devtools <[email protected]>2022-02-11 11:03:03 +0300
committerarcadia-devtools <[email protected]>2022-02-11 11:03:03 +0300
commit9e0f7aea7799e801eb90af47c09825358537a718 (patch)
tree1baef65b00ef396862a4bbadb1fb62237ac929dc /contrib/tools/python/src/Include/unicodeobject.h
parenta9af1955eae1da5beab8f35afe22635c467084b7 (diff)
intermediate changes
ref:23d75af30a9649405a1b3643fbbd9810cf9f1987
Diffstat (limited to 'contrib/tools/python/src/Include/unicodeobject.h')
-rw-r--r--contrib/tools/python/src/Include/unicodeobject.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/contrib/tools/python/src/Include/unicodeobject.h b/contrib/tools/python/src/Include/unicodeobject.h
index 94419760c5c..3ba86e71b2a 100644
--- a/contrib/tools/python/src/Include/unicodeobject.h
+++ b/contrib/tools/python/src/Include/unicodeobject.h
@@ -539,7 +539,7 @@ PyAPI_FUNC(int) PyUnicode_Resize(
*/
PyAPI_FUNC(PyObject*) PyUnicode_FromEncodedObject(
- register PyObject *obj, /* Object */
+ PyObject *obj, /* Object */
const char *encoding, /* encoding */
const char *errors /* error handling */
);
@@ -558,7 +558,7 @@ PyAPI_FUNC(PyObject*) PyUnicode_FromEncodedObject(
*/
PyAPI_FUNC(PyObject*) PyUnicode_FromObject(
- register PyObject *obj /* Object */
+ PyObject *obj /* Object */
);
PyAPI_FUNC(PyObject *) PyUnicode_FromFormatV(const char*, va_list);
@@ -580,7 +580,7 @@ PyAPI_FUNC(PyObject *) _PyUnicode_FormatAdvanced(PyObject *obj,
The buffer is copied into the new object. */
PyAPI_FUNC(PyObject*) PyUnicode_FromWideChar(
- register const wchar_t *w, /* wchar_t buffer */
+ const wchar_t *w, /* wchar_t buffer */
Py_ssize_t size /* size of buffer */
);
@@ -598,7 +598,7 @@ PyAPI_FUNC(PyObject*) PyUnicode_FromWideChar(
PyAPI_FUNC(Py_ssize_t) PyUnicode_AsWideChar(
PyUnicodeObject *unicode, /* Unicode object */
- register wchar_t *w, /* wchar_t buffer */
+ wchar_t *w, /* wchar_t buffer */
Py_ssize_t size /* size of buffer */
);