Author: Armin Rigo <[email protected]>
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;
_______________________________________________
pypy-commit mailing list
[email protected]
https://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to