diff options
author | Neal Norwitz <nnorwitz@gmail.com> | 2007-08-23 21:42:55 (GMT) |
---|---|---|
committer | Neal Norwitz <nnorwitz@gmail.com> | 2007-08-23 21:42:55 (GMT) |
commit | 53cbdaa84c9e3c5f8b7ff2446452ff4d6f536219 (patch) | |
tree | 40d00a2f819472aa21bd32b505a53c394019db82 /Modules/gcmodule.c | |
parent | d6d2f2f93919d035929ac9d02244657a9b604413 (diff) | |
download | cpython-53cbdaa84c9e3c5f8b7ff2446452ff4d6f536219.zip cpython-53cbdaa84c9e3c5f8b7ff2446452ff4d6f536219.tar.gz cpython-53cbdaa84c9e3c5f8b7ff2446452ff4d6f536219.tar.bz2 |
Convert a bunch of constant strings in C to unicode.
Diffstat (limited to 'Modules/gcmodule.c')
-rw-r--r-- | Modules/gcmodule.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/gcmodule.c b/Modules/gcmodule.c index 5960730..63fb1f1 100644 --- a/Modules/gcmodule.c +++ b/Modules/gcmodule.c @@ -851,7 +851,7 @@ collect(int generation) if (PyErr_Occurred()) { if (gc_str == NULL) - gc_str = PyString_FromString("garbage collection"); + gc_str = PyUnicode_FromString("garbage collection"); PyErr_WriteUnraisable(gc_str); Py_FatalError("unexpected exception during garbage collection"); } |