diff options
author | Victor Stinner <vstinner@python.org> | 2020-03-13 17:03:56 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-03-13 17:03:56 (GMT) |
commit | ff4584caca04cb3da0dbd5b1e9bf67e40adf5312 (patch) | |
tree | fedb1e89a042baedb4475e76b12fcf79e2f77837 /Python/codecs.c | |
parent | 6d674a1bf456945eb758e85c11484a9f1494f2b4 (diff) | |
download | cpython-ff4584caca04cb3da0dbd5b1e9bf67e40adf5312.zip cpython-ff4584caca04cb3da0dbd5b1e9bf67e40adf5312.tar.gz cpython-ff4584caca04cb3da0dbd5b1e9bf67e40adf5312.tar.bz2 |
bpo-39947: Use _PyInterpreterState_GET_UNSAFE() (GH-18978)
Replace _PyInterpreterState_Get() function call with
_PyInterpreterState_GET_UNSAFE() macro which is more efficient but
don't check if tstate or interp is NULL.
_Py_GetConfigsAsDict() now uses _PyThreadState_GET().
Diffstat (limited to 'Python/codecs.c')
-rw-r--r-- | Python/codecs.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Python/codecs.c b/Python/codecs.c index e5bcdb0..bbbf774 100644 --- a/Python/codecs.c +++ b/Python/codecs.c @@ -32,7 +32,7 @@ static int _PyCodecRegistry_Init(void); /* Forward */ int PyCodec_Register(PyObject *search_function) { - PyInterpreterState *interp = _PyInterpreterState_Get(); + PyInterpreterState *interp = _PyInterpreterState_GET_UNSAFE(); if (interp->codec_search_path == NULL && _PyCodecRegistry_Init()) goto onError; if (search_function == NULL) { @@ -187,7 +187,7 @@ int _PyCodec_Forget(const char *encoding) PyObject *v; int result; - PyInterpreterState *interp = _PyInterpreterState_Get(); + PyInterpreterState *interp = _PyInterpreterState_GET_UNSAFE(); if (interp->codec_search_path == NULL) { return -1; } @@ -620,7 +620,7 @@ PyObject *_PyCodec_DecodeText(PyObject *object, Return 0 on success, -1 on error */ int PyCodec_RegisterError(const char *name, PyObject *error) { - PyInterpreterState *interp = _PyInterpreterState_Get(); + PyInterpreterState *interp = _PyInterpreterState_GET_UNSAFE(); if (interp->codec_search_path == NULL && _PyCodecRegistry_Init()) return -1; if (!PyCallable_Check(error)) { @@ -1492,7 +1492,7 @@ static int _PyCodecRegistry_Init(void) } }; - PyInterpreterState *interp = _PyInterpreterState_Get(); + PyInterpreterState *interp = _PyInterpreterState_GET_UNSAFE(); PyObject *mod; if (interp->codec_search_path != NULL) |