Make test_tcl.py pass, by accepting unicode strings as variable names.
diff --git a/Modules/_tkinter.c b/Modules/_tkinter.c
index c8e4ef7..e9dc72b 100644
--- a/Modules/_tkinter.c
+++ b/Modules/_tkinter.c
@@ -1463,6 +1463,10 @@
 		*out = PyString_AsString(in);
 		return 1;
 	}
+        if (PyUnicode_Check(in)) {
+		*out = PyUnicode_AsString(in);
+		return 1;
+	}
 	if (PyTclObject_Check(in)) {
 		*out = PyTclObject_TclString(in);
 		return 1;