Author: Armin Rigo <[email protected]>
Branch:
Changeset: r3187:d100f3412c88
Date: 2019-01-29 00:14 +0100
http://bitbucket.org/cffi/cffi/changeset/d100f3412c88/
Log: py3 fix
diff --git a/testing/cffi0/test_function.py b/testing/cffi0/test_function.py
--- a/testing/cffi0/test_function.py
+++ b/testing/cffi0/test_function.py
@@ -53,7 +53,7 @@
""")
needs_dlopen_none()
m = ffi.dlopen(None)
- x = m.getenv("FOO")
+ x = m.getenv(b"FOO")
assert x is None
def test_dlopen_filename(self):
_______________________________________________
pypy-commit mailing list
[email protected]
https://mail.python.org/mailman/listinfo/pypy-commit