]> sigrok.org Git - libsigrokdecode.git/commitdiff
Fix compile for Python >= 3.0.
authorUwe Hermann <redacted>
Sat, 8 Jan 2011 16:00:18 +0000 (17:00 +0100)
committerUwe Hermann <redacted>
Sat, 8 Jan 2011 16:00:18 +0000 (17:00 +0100)
Python docs tells us more about string functions:
"These functions have been renamed to PyBytes_* in Python 3.x. Unless
otherwise noted, the PyBytes functions available in 3.x are aliased to
their PyString_* equivalents to help porting."
(http://docs.python.org/c-api/string.html)

Use #defines to map the new names and fix the compile for Python >= 3.0.

Thanks Olivier Fauchon <redacted> for the patch.

decode.c

index 1b12c9ee33644f853712a333ff1185db1edf2969..a7458731b4288a3bddf73fe77184923c26d212b4 100644 (file)
--- a/decode.c
+++ b/decode.c
 #include <stdio.h>
 #include <string.h>
 
+/* Re-define some string functions for Python >= 3.0. */
+#if PY_VERSION_HEX >= 0x03000000
+#define PyString_AsString PyBytes_AsString
+#define PyString_FromString PyBytes_FromString
+#define PyString_Check PyBytes_Check
+#endif
+
 /**
  * Initialize libsigrokdecode.
  *