Re: [PATCH] tools: buildman: fix non-existing SafeConfigParser in Python 3.12+

2024-01-29 Thread Tom Rini
On Tue, 23 Jan 2024 18:57:01 +0100, Quentin Schulz wrote: > SafeConfigParser was renamed back in Python 3.2 (yes, no typo) to > ConfigParser[1], but it was still working as an alias until it got > removed in 3.12[2]. > > [1] https://docs.python.org/3.8/whatsnew/3.2.html#configparser > [2] https:/

[PATCH] tools: buildman: fix non-existing SafeConfigParser in Python 3.12+

2024-01-23 Thread Quentin Schulz
From: Quentin Schulz SafeConfigParser was renamed back in Python 3.2 (yes, no typo) to ConfigParser[1], but it was still working as an alias until it got removed in 3.12[2]. [1] https://docs.python.org/3.8/whatsnew/3.2.html#configparser [2] https://github.com/python/cpython/pull/92503 Cc: Quent