From cd9a8b6bcfe7a58abaf6097f12012342655e7baa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20v=2E=20L=C3=B6wis?= Date: Tue, 21 Jan 2003 21:52:57 +0000 Subject: [PATCH] Avoid usage of PyDoc_STR in 2.2 compatibility code. --- Modules/_tkinter.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Modules/_tkinter.c b/Modules/_tkinter.c index 1bb2d82a7ce..8b9926e0be4 100644 --- a/Modules/_tkinter.c +++ b/Modules/_tkinter.c @@ -39,7 +39,7 @@ Copyright (C) 1994 Steen Lumholt. /* 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