Staging
v0.5.1
https://github.com/python/cpython
Revision 41f4dc3bcf30cb8362a062a26818311c704ea89f authored by Miss Islington (bot) on 28 January 2020, 03:40:14 UTC, committed by Raymond Hettinger on 28 January 2020, 03:40:14 UTC
* Change the source for the SAT data to a primary source.
* Fix typo in the standard deviation
* Clarify that the binomial probabalities are just for the Python room.
(cherry picked from commit 01bf2196d842fc20667c5336e0a7a77eb4fdc25c)

Co-authored-by: Raymond Hettinger <rhettinger@users.noreply.github.com>

Co-authored-by: Raymond Hettinger <rhettinger@users.noreply.github.com>
1 parent b487a8e
Raw File
Tip revision: 41f4dc3bcf30cb8362a062a26818311c704ea89f authored by Miss Islington (bot) on 28 January 2020, 03:40:14 UTC
bpo-36018: Minor fixes to the NormalDist() examples and recipes. (GH-18226) (GH-18227)
Tip revision: 41f4dc3
traceback.h
#ifndef Py_TRACEBACK_H
#define Py_TRACEBACK_H
#ifdef __cplusplus
extern "C" {
#endif

struct _frame;

/* Traceback interface */

PyAPI_FUNC(int) PyTraceBack_Here(struct _frame *);
PyAPI_FUNC(int) PyTraceBack_Print(PyObject *, PyObject *);

/* Reveal traceback type so we can typecheck traceback objects */
PyAPI_DATA(PyTypeObject) PyTraceBack_Type;
#define PyTraceBack_Check(v) (Py_TYPE(v) == &PyTraceBack_Type)


#ifndef Py_LIMITED_API
#  define Py_CPYTHON_TRACEBACK_H
#  include  "cpython/traceback.h"
#  undef Py_CPYTHON_TRACEBACK_H
#endif

#ifdef __cplusplus
}
#endif
#endif /* !Py_TRACEBACK_H */
back to top