[pypy-commit] pypy cpyext-ext: typo

mattip pypy.commits at gmail.com
Thu Apr 21 12:35:06 EDT 2016


Author: mattip <matti.picus at gmail.com>
Branch: cpyext-ext
Changeset: r83806:1ea1f550649e
Date: 2016-04-21 19:34 +0300
http://bitbucket.org/pypy/pypy/changeset/1ea1f550649e/

Log:	typo

diff --git a/pypy/module/cpyext/api.py b/pypy/module/cpyext/api.py
--- a/pypy/module/cpyext/api.py
+++ b/pypy/module/cpyext/api.py
@@ -1220,7 +1220,7 @@
     # Generate definitions for global structures
     structs = ["#include <Python.h>"]
     if use_micronumpy:
-        structs.append('#include <pypy_numpy.h> /* api.py line 1223 */)
+        structs.append('#include <pypy_numpy.h> /* api.py line 1223 */')
     for name, (typ, expr) in GLOBALS.iteritems():
         if '#' in name:
             structs.append('%s %s;' % (typ[:-1], name.split('#')[0]))


More information about the pypy-commit mailing list