Sorry, something went wrong.
There was a problem hiding this comment.
Looks good. Let’s do this!
Sorry, something went wrong.
|
@hugovk The PR introduces deprecation warnings in tests that need to be handled : PYTHONWARNINGS=always ./python -Wall -m test test_configparser
0:00:00 load avg: 2.29 Run tests sequentially
0:00:00 load avg: 2.29 [1/1] test_configparser
/home/karthikeyan/stuff/python/cpython/Lib/test/test_configparser.py:1031: DeprecationWarning: LegacyInterpolation has been deprecated since Python 3.2 and will be removed from the configparser module in Python 3.13. Use BasicInterpolation or ExtendedInterpolation instead.
interpolation = configparser.LegacyInterpolation()
== Tests result: SUCCESS ==
1 test OK.
Total duration: 300 ms
Tests result: SUCCESS
|
Sorry, something went wrong.
|
@tirkarthi Thanks, will check it! |
Sorry, something went wrong.
LegacyInterpolation has been deprecated in docs since its introduction in Python 3.2:
Let's add a DeprecationWarning for a couple of releases before removal.
https://bugs.python.org/issue46607