diff options
author | Guido van Rossum <guido@python.org> | 1997-02-14 22:59:58 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1997-02-14 22:59:58 (GMT) |
commit | 52fa3a69090ac098b01b28f397d9bd08f957e8cd (patch) | |
tree | c01e3347c776bd8f5deb93af7e90cfca37dea8eb /Modules/stropmodule.c | |
parent | 0ae748d3c409fc4b870baadd601a53c6a43ddf11 (diff) | |
download | cpython-52fa3a69090ac098b01b28f397d9bd08f957e8cd.zip cpython-52fa3a69090ac098b01b28f397d9bd08f957e8cd.tar.gz cpython-52fa3a69090ac098b01b28f397d9bd08f957e8cd.tar.bz2 |
Changes for Lee Busby's SIGFPE patch set.
Two new modules fpectl and fpetest.
Surround various and sundry f.p. operations with PyFPE_*_PROTECT macros.
Diffstat (limited to 'Modules/stropmodule.c')
-rw-r--r-- | Modules/stropmodule.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Modules/stropmodule.c b/Modules/stropmodule.c index cb062ad..8ddf37d 100644 --- a/Modules/stropmodule.c +++ b/Modules/stropmodule.c @@ -661,7 +661,9 @@ strop_atof(self, args) return NULL; } errno = 0; + PyFPE_START_PROTECT("strop_atof", return 0) x = strtod(s, &end); + PyFPE_END_PROTECT while (*end && isspace(Py_CHARMASK(*end))) end++; if (*end != '\0') { |