8 #ifdef MPW /* This is for MPW's File command */
10 #define assert(e) { if (!(e)) { printf("### Python: Assertion failed:\n\
11 File %s; Line %d\n", __FILE__, __LINE__); abort(); } }
13 #define assert(e) { if (!(e)) { printf("Assertion failed\n"); abort(); } }
19 #endif /* !Py_ASSERT_H */