Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | bpo-35134: Move non-limited C API files to Include/cpython/ (GH-24561) | Nicholas Sim | 2021-02-19 | 1 | -15/+0 |
| | | | | | | Include/{odictobject.h,parser_interface.h,picklebufobject.h,pydebug.h,pyfpe.h} into Include/cpython/. Parser: peg_api: include Python.h instead of parser_interface.h. | ||||
* | bpo-38835: Exclude PyFPE macros from the stable API (GH-17228) | Victor Stinner | 2019-11-20 | 1 | -0/+3 |
| | | | | Exclude PyFPE_START_PROTECT() and PyFPE_END_PROTECT() macros of pyfpe.h from Py_LIMITED_API (stable API). | ||||
* | bpo-29137: Remove fpectl module (#4789) | Nathaniel J. Smith | 2018-01-06 | 1 | -167/+3 |
| | | | | | This module has never been enabled by default, never worked correctly on x86-64, and caused ABI problems that caused C extension compatibility. See bpo-29137 for details/discussion. | ||||
* | bpo-32150: Expand tabs to spaces in C files. (#4583) | Serhiy Storchaka | 2017-11-28 | 1 | -3/+3 |
| | |||||
* | remove trailing whitespace | Benjamin Peterson | 2016-09-20 | 1 | -18/+18 |
| | |||||
* | Remove trailing whitespace in order to silence warnings on HP-UX. | Trent Nelson | 2012-08-31 | 1 | -4/+4 |
| | |||||
* | Some patches to Lee Busby's fpectl mods that accidentally didn't make it | Guido van Rossum | 1997-10-20 | 1 | -25/+37 |
| | | | | into 1.5a4. | ||||
* | Change PyFPE_END_PROTECT to PyFPE_END_PROTECT(v). v should be the | Guido van Rossum | 1997-03-14 | 1 | -3/+3 |
| | | | | | | last variable to which a floating point expression is assigned. The macro passes its address to a dummy function so that the optimizer can't delay calculating its value until after the macro. | ||||
* | Changes for Lee Busby's SIGFPE patch set. | Guido van Rossum | 1997-02-14 | 1 | -0/+164 |
New file pyfpe.h, new exception FloatingPointError. |