summaryrefslogtreecommitdiffstats
path: root/Modules/_sre.c
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2006-05-28 22:38:57 (GMT)
committerGeorg Brandl <georg@python.org>2006-05-28 22:38:57 (GMT)
commit964f5978dc86bd4b28a750bd93caefe18c292f4a (patch)
treeef03da1910b1787eb5dfe0dfc640770f0f950b88 /Modules/_sre.c
parent660222f955ae66f3c2744b6c0d11e0efe27d2675 (diff)
downloadcpython-964f5978dc86bd4b28a750bd93caefe18c292f4a.zip
cpython-964f5978dc86bd4b28a750bd93caefe18c292f4a.tar.gz
cpython-964f5978dc86bd4b28a750bd93caefe18c292f4a.tar.bz2
METH_NOARGS functions do get called with two args.
Diffstat (limited to 'Modules/_sre.c')
-rw-r--r--Modules/_sre.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/Modules/_sre.c b/Modules/_sre.c
index 6094053..1b0fbc8 100644
--- a/Modules/_sre.c
+++ b/Modules/_sre.c
@@ -1623,7 +1623,7 @@ static PyObject*pattern_new_match(PatternObject*, SRE_STATE*, int);
static PyObject*pattern_scanner(PatternObject*, PyObject*);
static PyObject *
-sre_codesize(PyObject* self)
+sre_codesize(PyObject* self, PyObject *unused)
{
return Py_BuildValue("i", sizeof(SRE_CODE));
}
@@ -2467,7 +2467,7 @@ pattern_subn(PatternObject* self, PyObject* args, PyObject* kw)
}
static PyObject*
-pattern_copy(PatternObject* self)
+pattern_copy(PatternObject* self, PyObject *unused)
{
#ifdef USE_BUILTIN_COPY
PatternObject* copy;
@@ -3008,7 +3008,7 @@ match_regs(MatchObject* self)
}
static PyObject*
-match_copy(MatchObject* self)
+match_copy(MatchObject* self, PyObject *unused)
{
#ifdef USE_BUILTIN_COPY
MatchObject* copy;
@@ -3225,7 +3225,7 @@ scanner_dealloc(ScannerObject* self)
}
static PyObject*
-scanner_match(ScannerObject* self)
+scanner_match(ScannerObject* self, PyObject *unused)
{
SRE_STATE* state = &self->state;
PyObject* match;
@@ -3256,7 +3256,7 @@ scanner_match(ScannerObject* self)
static PyObject*
-scanner_search(ScannerObject* self)
+scanner_search(ScannerObject* self, PyObject *unused)
{
SRE_STATE* state = &self->state;
PyObject* match;