diff mercurial/cffi/osutilbuild.py @ 43668:53607fd3ec6c stable

cffi: fix build on Python 3 CFFI expects the arguments to be of type str, which means that the string literals should not have the `b` prefix.
author Manuel Jacob <me@manueljacob.de>
date Sun, 17 Nov 2019 19:55:01 +0100
parents 687b865b95ad
children 6000f5b25c9b
line wrap: on
line diff
--- a/mercurial/cffi/osutilbuild.py	Sat Nov 16 20:08:35 2019 +0100
+++ b/mercurial/cffi/osutilbuild.py	Sun Nov 17 19:55:01 2019 +0100
@@ -4,7 +4,7 @@
 
 ffi = cffi.FFI()
 ffi.set_source(
-    b"mercurial.cffi._osutil",
+    "mercurial.cffi._osutil",
     """
 #include <sys/attr.h>
 #include <sys/vnode.h>
@@ -22,7 +22,7 @@
     off_t             datalength;
 } __attribute__((aligned(4), packed)) val_attrs_t;
 """,
-    include_dirs=[b'mercurial'],
+    include_dirs=['mercurial'],
 )
 ffi.cdef(
     '''