[issue45173] Remove configparser deprecations

2022-02-02 Thread miss-islington
miss-islington added the comment: New changeset ba4d79af32b6bb8378cb7003f67d6c4d413fbe89 by Hugo van Kemenade in branch '3.10': [3.10] bpo-45173: Note configparser deprecations will be removed in 3.12 (GH-31084) https://github.com/python/cpython/commit/ba4d79af32b6bb8378cb7003f67d6c4d413fbe8

[issue45173] Remove configparser deprecations

2022-02-02 Thread Hugo van Kemenade
Change by Hugo van Kemenade : -- pull_requests: +29268 pull_request: https://github.com/python/cpython/pull/31084 ___ Python tracker ___ ___

[issue45173] Remove configparser deprecations

2022-02-02 Thread Gregory P. Smith
Gregory P. Smith added the comment: New changeset e8659b47dece5a272111c0af5e340c364a9f807b by Hugo van Kemenade in branch 'main': bpo-45173: Keep configparser deprecations until Python 3.12 (GH-30952) https://github.com/python/cpython/commit/e8659b47dece5a272111c0af5e340c364a9f807b

[issue45173] Remove configparser deprecations

2022-02-01 Thread Hugo van Kemenade
Hugo van Kemenade added the comment: Sure, please see https://bugs.python.org/issue46607. I've rebased GH-30927 to use the new issue number. -- ___ Python tracker ___ ___

[issue45173] Remove configparser deprecations

2022-02-01 Thread Hugo van Kemenade
Change by Hugo van Kemenade : -- pull_requests: -29106 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https

[issue45173] Remove configparser deprecations

2022-02-01 Thread STINNER Victor
STINNER Victor added the comment: Currently, the issue title is "Remove configparser deprecations". GH-30927 doesn't remove deprecated functions, but adds new warnings. It's really confusing to make this change as part of this issue. Can you please create a new issue for GH-30927 "bpo-45173:

[issue45173] Remove configparser deprecations

2022-02-01 Thread STINNER Victor
STINNER Victor added the comment: > Searching 4,764 sdists from the top 5,000 PyPI packages, these 13 contain > "LegacyInterpolation" Other removed symbols are causing troubles, like SafeConfigParser. Example of Fedora bz #2025600: mom fails to build with Python 3.11: AttributeError: module

[issue45173] Remove configparser deprecations

2022-01-27 Thread Hugo van Kemenade
Change by Hugo van Kemenade : -- pull_requests: +29131 stage: needs patch -> patch review pull_request: https://github.com/python/cpython/pull/30952 ___ Python tracker ___

[issue45173] Remove configparser deprecations

2022-01-26 Thread Gregory P. Smith
Gregory P. Smith added the comment: Per https://mail.python.org/archives/list/python-...@python.org/thread/GJTREADEXYAETECE5JDTPYWK4WMTKYGR/ we want to revert https://github.com/python/cpython/commit/1fc41ae8709e20d741bd86c2345173688a5e84b0 for 3.11 to avoid causing pain. per that thread a

[issue45173] Remove configparser deprecations

2022-01-26 Thread Hugo van Kemenade
Change by Hugo van Kemenade : -- pull_requests: +29106 pull_request: https://github.com/python/cpython/pull/30927 ___ Python tracker ___ ___

[issue45173] Remove configparser deprecations

2022-01-04 Thread Hugo van Kemenade
Hugo van Kemenade added the comment: Searching 4,764 sdists from the top 5,000 PyPI packages, these 13 contain "LegacyInterpolation": configparser-5.1.0.tar.gz configparser2-4.0.0.tar.gz eth_abi-2.1.1.tar.gz eth-account-0.5.6.tar.gz eth-hash-0.3.2.tar.gz eth-utils-1.10.0.tar.gz hexbytes-0.2.2

[issue45173] Remove configparser deprecations

2021-09-13 Thread Łukasz Langa
Łukasz Langa added the comment: New changeset 1fc41ae8709e20d741bd86c2345173688a5e84b0 by Hugo van Kemenade in branch 'main': bpo-45173 Remove configparser deprecations (GH-28292) https://github.com/python/cpython/commit/1fc41ae8709e20d741bd86c2345173688a5e84b0 -- nosy: +lukasz.langa

[issue45173] Remove configparser deprecations

2021-09-11 Thread Hugo van Kemenade
Hugo van Kemenade added the comment: Also, the LegacyInterpolation class is deprecated since Python 3.2 but with no DeprecationWarning. A quick sampling of GitHub results shows only copies of CPython's configparser.py and test_configparser.py https://github.com/search?l=Python&p=1&q=LegacyI

[issue45173] Remove configparser deprecations

2021-09-11 Thread Hugo van Kemenade
Change by Hugo van Kemenade : -- keywords: +patch pull_requests: +26708 stage: -> patch review pull_request: https://github.com/python/cpython/pull/28292 ___ Python tracker __

[issue45173] Remove configparser deprecations

2021-09-11 Thread Hugo van Kemenade
New submission from Hugo van Kemenade : In the configparser module, these have been deprecated since Python 3.2: * the SafeConfigParser class, * the filename property of the ParsingError class, * the readfp method of the ConfigParser class, They can be removed in Python 3.11. -- compo