[pypy-commit] cffi release-1.13: oops

arigo pypy.commits at gmail.com
Fri Sep 20 12:38:29 EDT 2019


Author: Armin Rigo <arigo at tunes.org>
Branch: release-1.13
Changeset: r3290:e9384e7fda85
Date: 2019-09-20 18:38 +0200
http://bitbucket.org/cffi/cffi/changeset/e9384e7fda85/

Log:	oops

diff --git a/testing/cffi1/test_re_python.py b/testing/cffi1/test_re_python.py
--- a/testing/cffi1/test_re_python.py
+++ b/testing/cffi1/test_re_python.py
@@ -17,7 +17,7 @@
     int add43(int x, ...) { return x; }
     int globalvar42 = 1234;
     const int globalconst42 = 4321;
-    const char *const globalconsthello;
+    const char *const globalconsthello = "hello";
     struct foo_s;
     typedef struct bar_s { int x; signed char a[]; } bar_t;
     enum foo_e { AA, BB, CC };
@@ -65,7 +65,7 @@
     int add43(int, ...);
     int globalvar42;
     const int globalconst42;
-    const char *const globalconsthello = "hello";
+    const char *const globalconsthello;
     int no_such_function(int);
     int no_such_globalvar;
     struct foo_s;


More information about the pypy-commit mailing list