summaryrefslogtreecommitdiffstats
path: root/Include/unicodeobject.h
diff options
context:
space:
mode:
authorEthan Furman <ethan@stoneleaf.us>2015-01-24 04:05:18 (GMT)
committerEthan Furman <ethan@stoneleaf.us>2015-01-24 04:05:18 (GMT)
commitb95b56150fc3e7834783b54acdddeaed4fe44e27 (patch)
treec1994946e84b457841024402b50f8a9640211cb4 /Include/unicodeobject.h
parent8861502e0746465c4124548681f05969c08f4cae (diff)
downloadcpython-b95b56150fc3e7834783b54acdddeaed4fe44e27.zip
cpython-b95b56150fc3e7834783b54acdddeaed4fe44e27.tar.gz
cpython-b95b56150fc3e7834783b54acdddeaed4fe44e27.tar.bz2
Issue20284: Implement PEP461
Diffstat (limited to 'Include/unicodeobject.h')
-rw-r--r--Include/unicodeobject.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/Include/unicodeobject.h b/Include/unicodeobject.h
index 729f584..d2ffabe 100644
--- a/Include/unicodeobject.h
+++ b/Include/unicodeobject.h
@@ -2245,6 +2245,8 @@ PyAPI_FUNC(Py_UNICODE*) Py_UNICODE_strrchr(
Py_UNICODE c
);
+PyAPI_FUNC(PyObject*) _PyUnicode_FormatLong(PyObject *, int, int, int);
+
/* Create a copy of a unicode string ending with a nul character. Return NULL
and raise a MemoryError exception on memory allocation failure, otherwise
return a new allocated buffer (use PyMem_Free() to free the buffer). */