Avoid usage of PyDoc_STR in 2.2 compatibility code.
diff --git a/Modules/_tkinter.c b/Modules/_tkinter.c
index 1bb2d82..8b9926e 100644
--- a/Modules/_tkinter.c
+++ b/Modules/_tkinter.c
@@ -39,7 +39,7 @@
 
 /* Allow using this code in Python 2.[12] */
 #ifndef PyDoc_STRVAR
-#define PyDoc_STRVAR(name,str) static char name[] = PyDoc_STR(str)
+#define PyDoc_STRVAR(name,str) static char name[] = str
 #endif
 
 #ifndef PyMODINIT_FUNC