diff options
author | Neal Norwitz <nnorwitz@gmail.com> | 2006-03-22 09:28:35 (GMT) |
---|---|---|
committer | Neal Norwitz <nnorwitz@gmail.com> | 2006-03-22 09:28:35 (GMT) |
commit | 227b5339edcdcc9ca6322a2217b75db11b69048f (patch) | |
tree | 8829d0c1b2ac9474b386499ca0fda37700f72bd8 /Modules/_lsprof.c | |
parent | 914a81841f881122f95eb5a9330a3ef96de174cd (diff) | |
download | cpython-227b5339edcdcc9ca6322a2217b75db11b69048f.zip cpython-227b5339edcdcc9ca6322a2217b75db11b69048f.tar.gz cpython-227b5339edcdcc9ca6322a2217b75db11b69048f.tar.bz2 |
Finish getting rid of statichere/staticforward
Diffstat (limited to 'Modules/_lsprof.c')
-rw-r--r-- | Modules/_lsprof.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Modules/_lsprof.c b/Modules/_lsprof.c index dddab8e..17c71e9 100644 --- a/Modules/_lsprof.c +++ b/Modules/_lsprof.c @@ -117,7 +117,7 @@ typedef struct { #define POF_BUILTINS 0x004 #define POF_NOMEMORY 0x100 -staticforward PyTypeObject PyProfiler_Type; +static PyTypeObject PyProfiler_Type; #define PyProfiler_Check(op) PyObject_TypeCheck(op, &PyProfiler_Type) #define PyProfiler_CheckExact(op) ((op)->ob_type == &PyProfiler_Type) @@ -798,7 +798,7 @@ Profiler(custom_timer=None, time_unit=None, subcalls=True, builtins=True)\n\ is, in seconds).\n\ "); -statichere PyTypeObject PyProfiler_Type = { +static PyTypeObject PyProfiler_Type = { PyObject_HEAD_INIT(NULL) 0, /* ob_size */ "_lsprof.Profiler", /* tp_name */ |