Commit 8188e792 authored by Fred Drake's avatar Fred Drake

assert.h was not always included by Python.h; make sure we import it for

older versions.  (Thanks to Martijn Faassen.)
parent ef6373a4
#include "Python.h" #include "Python.h"
#if PY_VERSION_HEX < 0x020000B1
#include <assert.h>
#endif
#include <ctype.h> #include <ctype.h>
#include "compile.h" #include "compile.h"
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment