summaryrefslogtreecommitdiff
path: root/Include/codecs.h
diff options
context:
space:
mode:
Diffstat (limited to 'Include/codecs.h')
-rw-r--r--Include/codecs.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/Include/codecs.h b/Include/codecs.h
index 3ad0f2b5aa..37ecfb4ab7 100644
--- a/Include/codecs.h
+++ b/Include/codecs.h
@@ -27,6 +27,14 @@ PyAPI_FUNC(int) PyCodec_Register(
PyObject *search_function
);
+/* Unregister a codec search function and clear the registry's cache.
+ If the search function is not registered, do nothing.
+ Return 0 on success. Raise an exception and return -1 on error. */
+
+PyAPI_FUNC(int) PyCodec_Unregister(
+ PyObject *search_function
+ );
+
/* Codec registry lookup API.
Looks up the given encoding and returns a CodecInfo object with