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

file() was removed in Python 3 in favor of open() #898

Closed cclauss closed 2 months ago

cclauss commented 2 months ago

https://portingguide.readthedocs.io/en/latest/builtins.html#removed-file

https://docs.python.org/3/whatsnew/3.0.html#builtins

Removed the file type. Use open(). There are now several different kinds of streams that open can return in the io module.

cclauss commented 2 months ago

@RossBencina

Like #890

RossBencina commented 2 months ago

Thank you!