summaryrefslogtreecommitdiff
path: root/Python/codecs.c
diff options
context:
space:
mode:
authorNick Coghlan <ncoghlan@gmail.com>2014-09-15 23:50:44 +1200
committerNick Coghlan <ncoghlan@gmail.com>2014-09-15 23:50:44 +1200
commit8fad1676a215bab3e61dccf0f1802ccb17a43a41 (patch)
tree8a372bcba4c55571779e527d4c202bc2ab04ea0b /Python/codecs.c
parentb85a97600a45bf235fd8b541ebab358f6a8aa5dd (diff)
downloadcpython-git-8fad1676a215bab3e61dccf0f1802ccb17a43a41.tar.gz
Issue #22166: clear codec caches in test_codecs
Diffstat (limited to 'Python/codecs.c')
-rw-r--r--Python/codecs.c26
1 files changed, 26 insertions, 0 deletions
diff --git a/Python/codecs.c b/Python/codecs.c
index e06d6e0922..6b8033ecf8 100644
--- a/Python/codecs.c
+++ b/Python/codecs.c
@@ -185,6 +185,32 @@ PyObject *_PyCodec_Lookup(const char *encoding)
return NULL;
}
+int _PyCodec_Forget(const char *encoding)
+{
+ PyInterpreterState *interp;
+ PyObject *v;
+ int result;
+
+ interp = PyThreadState_GET()->interp;
+ if (interp->codec_search_path == NULL) {
+ return -1;
+ }
+
+ /* Convert the encoding to a normalized Python string: all
+ characters are converted to lower case, spaces and hyphens are
+ replaced with underscores. */
+ v = normalizestring(encoding);
+ if (v == NULL) {
+ return -1;
+ }
+
+ /* Drop the named codec from the internal cache */
+ result = PyDict_DelItem(interp->codec_search_cache, v);
+ Py_DECREF(v);
+
+ return result;
+}
+
/* Codec registry encoding check API. */
int PyCodec_KnownEncoding(const char *encoding)