1993-07-28 06:05:47 -03:00
|
|
|
#ifndef Py_ASSERT_H
|
|
|
|
#define Py_ASSERT_H
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
1991-02-19 08:39:46 -04:00
|
|
|
|
1994-08-01 08:34:53 -03: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 09:07:46 -03:00
|
|
|
#define assert(e) { if (!(e)) { printf("Assertion failed\n"); abort(); } }
|
1994-08-01 08:34:53 -03:00
|
|
|
#endif
|
1993-07-28 06:05:47 -03:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
#endif /* !Py_ASSERT_H */
|