summaryrefslogtreecommitdiffstats
path: root/PC/_subprocess.c
diff options
context:
space:
mode:
authorMartin v. Löwis <martin@v.loewis.de>2007-07-22 14:41:55 (GMT)
committerMartin v. Löwis <martin@v.loewis.de>2007-07-22 14:41:55 (GMT)
commit95c95ce5be8cf87e0e95ef285664aabda7ddd170 (patch)
tree154ee47a643efbe4c628b196e2e2dce88f61ecf6 /PC/_subprocess.c
parent5d7428b8ce0ffc79b24b05df2b3d2865db037902 (diff)
downloadcpython-95c95ce5be8cf87e0e95ef285664aabda7ddd170.zip
cpython-95c95ce5be8cf87e0e95ef285664aabda7ddd170.tar.gz
cpython-95c95ce5be8cf87e0e95ef285664aabda7ddd170.tar.bz2
Merged revisions 56483-56491 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/p3yk ........ r56486 | kurt.kaiser | 2007-07-22 05:27:08 +0200 (So, 22 Jul 2007) | 2 lines Fix typo introduced at r55797 ........ r56487 | kurt.kaiser | 2007-07-22 07:48:45 +0200 (So, 22 Jul 2007) | 2 lines Exception attr accessed via args in py3k. ........ r56489 | martin.v.loewis | 2007-07-22 15:32:44 +0200 (So, 22 Jul 2007) | 2 lines Regenerate. ........ r56490 | martin.v.loewis | 2007-07-22 15:34:06 +0200 (So, 22 Jul 2007) | 2 lines Port Mac modules to PEP 3123. ........ r56491 | martin.v.loewis | 2007-07-22 16:35:53 +0200 (So, 22 Jul 2007) | 1 line Port to PEP 3123. ........
Diffstat (limited to 'PC/_subprocess.c')
-rw-r--r--PC/_subprocess.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/PC/_subprocess.c b/PC/_subprocess.c
index f048bc2..14e1333 100644
--- a/PC/_subprocess.c
+++ b/PC/_subprocess.c
@@ -128,8 +128,7 @@ sp_handle_as_int(sp_handle_object* self)
static PyNumberMethods sp_handle_as_number;
static PyTypeObject sp_handle_type = {
- PyObject_HEAD_INIT(NULL)
- 0, /*ob_size*/
+ PyVarObject_HEAD_INIT(NULL, 0)
"_subprocess_handle", sizeof(sp_handle_object), 0,
(destructor) sp_handle_dealloc, /*tp_dealloc*/
0, /*tp_print*/
@@ -273,7 +272,7 @@ gethandle(PyObject* obj, char* name)
PyErr_Clear(); /* FIXME: propagate error? */
return NULL;
}
- if (value->ob_type != &sp_handle_type)
+ if (Py_Type(&value) != &sp_handle_type)
ret = NULL;
else
ret = value->handle;
@@ -556,7 +555,7 @@ init_subprocess()
PyObject *m;
/* patch up object descriptors */
- sp_handle_type.ob_type = &PyType_Type;
+ Py_Type(&sp_handle_type) = &PyType_Type;
sp_handle_as_number.nb_int = (unaryfunc) sp_handle_as_int;
m = Py_InitModule("_subprocess", sp_functions);