Staging
v0.8.1
https://github.com/python/cpython
Revision 0230e64d2c976ab755c145e97bf86032e0fe3a53 authored by Mariatta on 14 February 2017, 14:11:12 UTC, committed by GitHub on 14 February 2017, 14:11:12 UTC
various updates from upstream python/typing repo:

- Added typing.Counter and typing.ChainMap generics
- More flexible typing.NamedTuple
- Improved generic ABC caching
- More tests
- Bugfixes
- Other updates
* Add Misc/NEWS entry


(cherry picked from commit b692dc8475a032740576129d0990ddc3edccab2b)
1 parent 2d0c228
Raw File
Tip revision: 0230e64d2c976ab755c145e97bf86032e0fe3a53 authored by Mariatta on 14 February 2017, 14:11:12 UTC
bpo-28556: Various updates to typing (#28) (#77)
Tip revision: 0230e64
pyfpe.c
#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
 * getting missing externals, but to actually handle SIGFPE requires
 * defining a handler and enabling generation of SIGFPE.
 */

#ifdef WANT_SIGFPE_HANDLER
jmp_buf PyFPE_jbuf;
int PyFPE_counter = 0;
#endif

/* Have this outside the above #ifdef, since some picky ANSI compilers issue a
   warning when compiling an empty file. */

double
PyFPE_dummy(void *dummy)
{
	return 1.0;
}
back to top