From: Mark Wooding Date: Fri, 22 Nov 2019 18:33:33 +0000 (+0000) Subject: pgen.c: Add missing `EV' arg in `PrimeGenEventHandler' method docstrings. X-Git-Url: https://git.distorted.org.uk/~mdw/catacomb-python/commitdiff_plain/7008bdd781f60ed3fec4cf3bf3945fa4bca2a751 pgen.c: Add missing `EV' arg in `PrimeGenEventHandler' method docstrings. --- diff --git a/pgen.c b/pgen.c index 30b78ed..081d8e5 100644 --- a/pgen.c +++ b/pgen.c @@ -617,12 +617,12 @@ static PyObject *pgev_stdev(pgen_proc *proc) static PyMethodDef pgev_pymethods[] = { #define METHNAME(name) pgmeth_##name - METH (pg_abort, "E.pg_abort() -> PGRC -- prime generation aborted") - METH (pg_done, "E.pg_done() -> PGRC -- prime generation finished") - METH (pg_begin, "E.pg_begin() -> PGRC -- commence stepping/testing") - METH (pg_try, "E.pg_try() -> PGRC -- found new candidate") - METH (pg_pass, "E.pg_pass() -> PGRC -- passed primality test") - METH (pg_fail, "E.pg_fail() -> PGRC -- failed primality test") + METH (pg_abort, "E.pg_abort(EV) -> PGRC -- prime generation aborted") + METH (pg_done, "E.pg_done(EV) -> PGRC -- prime generation finished") + METH (pg_begin, "E.pg_begin(EV) -> PGRC -- commence stepping/testing") + METH (pg_try, "E.pg_try(EV) -> PGRC -- found new candidate") + METH (pg_pass, "E.pg_pass(EV) -> PGRC -- passed primality test") + METH (pg_fail, "E.pg_fail(EV) -> PGRC -- failed primality test") #undef METHNAME { 0 } };