davidmalcolm / gcc-python-plugin

GCC plugin that embeds CPython inside the compiler
GNU General Public License v3.0
198 stars 58 forks source link

demo.c: Update for python3 #141

Closed vries closed 6 years ago

vries commented 6 years ago

Test-case demo.c does not compile with python3, because it uses a PyInt_* function.

Fix compilation by replacing it with its PyLong_* equivalent, as suggested by this ( https://docs.python.org/3/howto/cporting.html#long-int-unification ).