1993-07-28 09:05:47 +00:00
|
|
|
#ifndef Py_ASSERT_H
|
|
|
|
#define Py_ASSERT_H
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
1991-02-19 12:39:46 +00:00
|
|
|
|
1994-08-01 11:34:53 +00:00
|
|
|
#ifdef MPW /* This is for MPW's File command */
|
|
|
|
|
|
|
|
#define assert(e) { if (!(e)) { printf("### Python: Assertion failed:\n\
|
|
|
|
File %s; Line %d\n", __FILE__, __LINE__); abort(); } }
|
|
|
|
#else
|
1990-10-14 12:07:46 +00:00
|
|
|
#define assert(e) { if (!(e)) { printf("Assertion failed\n"); abort(); } }
|
1994-08-01 11:34:53 +00:00
|
|
|
#endif
|
1993-07-28 09:05:47 +00:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
#endif /* !Py_ASSERT_H */
|