PortAudio / portaudio

PortAudio is a cross-platform, open-source C language library for real-time audio input and output.
Other
1.37k stars 286 forks source link

Upgrade Python 2 code to Python 3 #890

Closed cclauss closed 2 months ago

cclauss commented 3 months ago

Print is a function in Python 3. https://docs.python.org/3/whatsnew/3.0.html

RossBencina commented 3 months ago

Maybe best to add from __future__ import print_function to avoid gratuitously breaking Python 2 support. I think 2.7 was still the version shipped on MacOS not that long ago.

cclauss commented 3 months ago

macOS no longer ships with Python.

RossBencina commented 2 months ago

Thank you!