summaryrefslogtreecommitdiffstats
path: root/PC/_subprocess.c
diff options
context:
space:
mode:
authorNeal Norwitz <nnorwitz@gmail.com>2006-03-22 09:28:35 (GMT)
committerNeal Norwitz <nnorwitz@gmail.com>2006-03-22 09:28:35 (GMT)
commit227b5339edcdcc9ca6322a2217b75db11b69048f (patch)
tree8829d0c1b2ac9474b386499ca0fda37700f72bd8 /PC/_subprocess.c
parent914a81841f881122f95eb5a9330a3ef96de174cd (diff)
downloadcpython-227b5339edcdcc9ca6322a2217b75db11b69048f.zip
cpython-227b5339edcdcc9ca6322a2217b75db11b69048f.tar.gz
cpython-227b5339edcdcc9ca6322a2217b75db11b69048f.tar.bz2
Finish getting rid of statichere/staticforward
Diffstat (limited to 'PC/_subprocess.c')
-rw-r--r--PC/_subprocess.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/PC/_subprocess.c b/PC/_subprocess.c
index b675b88..1ca4ece 100644
--- a/PC/_subprocess.c
+++ b/PC/_subprocess.c
@@ -53,7 +53,7 @@ typedef struct {
HANDLE handle;
} sp_handle_object;
-staticforward PyTypeObject sp_handle_type;
+static PyTypeObject sp_handle_type;
static PyObject*
sp_handle_new(HANDLE handle)
@@ -127,7 +127,7 @@ sp_handle_as_int(sp_handle_object* self)
static PyNumberMethods sp_handle_as_number;
-statichere PyTypeObject sp_handle_type = {
+static PyTypeObject sp_handle_type = {
PyObject_HEAD_INIT(NULL)
0, /*ob_size*/
"_subprocess_handle", sizeof(sp_handle_object), 0,