A few more PyThreadState_Get to PyThreadState_GET conversions
diff --git a/Modules/_bsddb.c b/Modules/_bsddb.c
index 444a009..6eb4866 100644
--- a/Modules/_bsddb.c
+++ b/Modules/_bsddb.c
@@ -4457,7 +4457,7 @@
 
 #if defined(WITH_THREAD) && !defined(MYDB_USE_GILSTATE)
     /* Save the current interpreter, so callbacks can do the right thing. */
-    _db_interpreterState = PyThreadState_Get()->interp;
+    _db_interpreterState = PyThreadState_GET()->interp;
 #endif
 
     /* Create the module and add the functions */
diff --git a/Modules/readline.c b/Modules/readline.c
index e151537..37baf87 100644
--- a/Modules/readline.c
+++ b/Modules/readline.c
@@ -178,7 +178,7 @@
 		Py_INCREF(function);
 		*hook_var = function;
 		Py_XDECREF(tmp);
-		*tstate = PyThreadState_Get();
+		*tstate = PyThreadState_GET();
 	}
 	else {
 		PyOS_snprintf(buf, sizeof(buf),
diff --git a/Python/dynload_shlib.c b/Python/dynload_shlib.c
index af23f80..50851a8 100644
--- a/Python/dynload_shlib.c
+++ b/Python/dynload_shlib.c
@@ -109,7 +109,7 @@
 	}
 
 #if !(defined(PYOS_OS2) && defined(PYCC_GCC))
-        dlopenflags = PyThreadState_Get()->interp->dlopenflags;
+        dlopenflags = PyThreadState_GET()->interp->dlopenflags;
 #endif
 
 	if (Py_VerboseFlag)