Various improvements to various docstrings.
Modified function: nextprime and prevprime now have an optional argument to specify the primality test. Default == isprime.
Modified function: if fed a finite parameter sequence, and if this fails to produce a factor, then ecm will return None. This requires that nproc == 1. The parameter sequence for the case where nprocs > 1 must still be infinite.
Improved function: primegen has been sped up by as much as 15%.
Deprecation: iterprod and binomial will be replaced with "from math import prod, comb" in some future version, and modinv will be removed since it can now be computed via pow(x, -1, y).
Removed function: mpqs
Removed function: fermat_prp
New function: siqs, as a replacement for the buggy mpqs.
---