[issue37320] aifc, sunau, wave: remove deprecated openfp() function

2019-06-17 Thread STINNER Victor
STINNER Victor added the comment: If your code uses openfp(): just use open() instead ;-) -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker __

[issue37320] aifc, sunau, wave: remove deprecated openfp() function

2019-06-17 Thread STINNER Victor
STINNER Victor added the comment: New changeset ac7b1a3f32cc81520e8962352294006d65744028 by Victor Stinner in branch 'master': bpo-37320: Remove openfp() of aifc, sunau and wave (GH-14169) https://github.com/python/cpython/commit/ac7b1a3f32cc81520e8962352294006d65744028 --

[issue37320] aifc, sunau, wave: remove deprecated openfp() function

2019-06-17 Thread STINNER Victor
STINNER Victor added the comment: openfp() functions were deprecated by bpo-31985. -- ___ Python tracker ___ ___ Python-bugs-list m

[issue37320] aifc, sunau, wave: remove deprecated openfp() function

2019-06-17 Thread STINNER Victor
Change by STINNER Victor : -- keywords: +patch pull_requests: +14011 stage: -> patch review pull_request: https://github.com/python/cpython/pull/14169 ___ Python tracker ___ _

[issue37320] aifc, sunau, wave: remove deprecated openfp() function

2019-06-17 Thread STINNER Victor
New submission from STINNER Victor : The openfp() function of aifc, sunau, wave is an alias to the open() function of each module and is deprecated since Python 3.7. Attached PR removes it. -- components: Library (Lib) messages: 345894 nosy: vstinner priority: normal severity: normal