# HG changeset patch # User Mike Miller # Date 1442705838 -7200 # Node ID bd6215fa1d87f3fca0ff3be5b5e8414a6d69011a # Parent 74f17b2a5d4586bd753d9b375fe5df124f243416 * ax_python_numpy.m4: Make trivially compatible with Python 3 diff -r 74f17b2a5d45 -r bd6215fa1d87 m4/ax_python_numpy.m4 --- a/m4/ax_python_numpy.m4 Fri Sep 18 00:00:09 2015 -0400 +++ b/m4/ax_python_numpy.m4 Sun Sep 20 01:37:18 2015 +0200 @@ -53,7 +53,7 @@ NUMPY_INCLUDEDIR=`$PYTHON -c ' try: from numpy import get_include - print get_include() + print(get_include()) except: pass '`