diff options
author | Benjamin Peterson <benjamin@python.org> | 2015-10-06 19:42:02 -0700 |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2015-10-06 19:42:02 -0700 |
commit | c16b8b405e790c04e4062a4b1231ba56387e4273 (patch) | |
tree | 7e6120af47d7413550634e652c8e827603c5c615 /Python/pyfpe.c | |
parent | 07929c5f6dd69c554889910bf5988ad6c31f5593 (diff) | |
parent | 65e767b0df52dd8262d49f3c1ea1ae3567bb4d47 (diff) | |
download | cpython-c16b8b405e790c04e4062a4b1231ba56387e4273.tar.gz |
merge 3.4 (#24806)
Diffstat (limited to 'Python/pyfpe.c')
-rw-r--r-- | Python/pyfpe.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Python/pyfpe.c b/Python/pyfpe.c index 4b7f5bae15..ab0ef83ead 100644 --- a/Python/pyfpe.c +++ b/Python/pyfpe.c @@ -1,6 +1,6 @@ #include "pyconfig.h" #include "pyfpe.h" -/* +/* * The signal handler for SIGFPE is actually declared in an external * module fpectl, or as preferred by the user. These variable * definitions are required in order to compile Python without @@ -13,7 +13,7 @@ jmp_buf PyFPE_jbuf; int PyFPE_counter = 0; #endif -/* Have this outside the above #ifdef, since some picky ANSI compilers issue a +/* Have this outside the above #ifdef, since some picky ANSI compilers issue a warning when compiling an empty file. */ double |