diff options
author | Neal Norwitz <nnorwitz@gmail.com> | 2007-08-24 22:49:25 (GMT) |
---|---|---|
committer | Neal Norwitz <nnorwitz@gmail.com> | 2007-08-24 22:49:25 (GMT) |
commit | 808c7d86ea07a91c416f0844f4fc95a0c996001c (patch) | |
tree | 51b89ee5307439c2f0aa84ff1e464fa3eb04003f /Modules/xxmodule.c | |
parent | aac530cdec5e79ce2a1230df82bcc32bd7bd97b9 (diff) | |
download | cpython-808c7d86ea07a91c416f0844f4fc95a0c996001c.zip cpython-808c7d86ea07a91c416f0844f4fc95a0c996001c.tar.gz cpython-808c7d86ea07a91c416f0844f4fc95a0c996001c.tar.bz2 |
Use unicode for reference (is there any way to build this module)
Diffstat (limited to 'Modules/xxmodule.c')
-rw-r--r-- | Modules/xxmodule.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/xxmodule.c b/Modules/xxmodule.c index 0923f81..7509e20 100644 --- a/Modules/xxmodule.c +++ b/Modules/xxmodule.c @@ -246,7 +246,7 @@ static PyTypeObject Str_Type = { 0, /*tp_methods*/ 0, /*tp_members*/ 0, /*tp_getset*/ - &PyString_Type, /*tp_base*/ + &PyUnicode_Type, /*tp_base*/ 0, /*tp_dict*/ 0, /*tp_descr_get*/ 0, /*tp_descr_set*/ |