commit | 53cbdaa84c9e3c5f8b7ff2446452ff4d6f536219 | [log] [tgz] |
---|---|---|
author | Neal Norwitz <nnorwitz@gmail.com> | Thu Aug 23 21:42:55 2007 +0000 |
committer | Neal Norwitz <nnorwitz@gmail.com> | Thu Aug 23 21:42:55 2007 +0000 |
tree | 40d00a2f819472aa21bd32b505a53c394019db82 | |
parent | d6d2f2f93919d035929ac9d02244657a9b604413 [diff] [blame] |
Convert a bunch of constant strings in C to unicode.
diff --git a/Modules/bz2module.c b/Modules/bz2module.c index c913c3f..65e3ae7 100644 --- a/Modules/bz2module.c +++ b/Modules/bz2module.c
@@ -2048,7 +2048,7 @@ if (m == NULL) return; - PyModule_AddObject(m, "__author__", PyString_FromString(__author__)); + PyModule_AddObject(m, "__author__", PyUnicode_FromString(__author__)); Py_INCREF(&BZ2File_Type); PyModule_AddObject(m, "BZ2File", (PyObject *)&BZ2File_Type);