summaryrefslogtreecommitdiff
path: root/Include/pyerrors.h
diff options
context:
space:
mode:
authorNick Coghlan <ncoghlan@gmail.com>2012-06-17 15:15:49 +1000
committerNick Coghlan <ncoghlan@gmail.com>2012-06-17 15:15:49 +1000
commitc40bc09942f9532ed957dc8cd4da269ec089e830 (patch)
treef2596be6a738f230f6be4776f7f42d6925a3d747 /Include/pyerrors.h
parent8d5c0b8c198374d0b88f30f04dd29d1f19c1c913 (diff)
downloadcpython-git-c40bc09942f9532ed957dc8cd4da269ec089e830.tar.gz
Issue #13783: the PEP 380 implementation no longer expands the public C API
Diffstat (limited to 'Include/pyerrors.h')
-rw-r--r--Include/pyerrors.h3
1 files changed, 0 insertions, 3 deletions
diff --git a/Include/pyerrors.h b/Include/pyerrors.h
index cfae92232f..2c145ada35 100644
--- a/Include/pyerrors.h
+++ b/Include/pyerrors.h
@@ -400,9 +400,6 @@ PyAPI_FUNC(int) PyUnicodeTranslateError_SetReason(
const char *reason /* UTF-8 encoded string */
);
-/* create a StopIteration exception with the given value */
-PyAPI_FUNC(PyObject *) PyStopIteration_Create(PyObject *);
-
/* These APIs aren't really part of the error implementation, but
often needed to format error messages; the native C lib APIs are
not available on all platforms, which is why we provide emulations