gh-131591: Implement PEP 768 (#131937)

Co-authored-by: Ivona Stojanovic <stojanovic.i@hotmail.com>
Co-authored-by: Matt Wozniski <godlygeek@gmail.com>
This commit is contained in:
Pablo Galindo Salgado 2025-04-03 16:20:01 +01:00 committed by GitHub
parent 275056a7fd
commit 943cc1431e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
31 changed files with 1796 additions and 2 deletions

View file

@ -626,6 +626,7 @@ class InitConfigTests(EmbeddingTestsMixin, unittest.TestCase):
'write_bytecode': True,
'verbose': 0,
'quiet': False,
'remote_debug': True,
'user_site_directory': True,
'configure_c_stdio': False,
'buffered_stdio': True,
@ -975,7 +976,7 @@ class InitConfigTests(EmbeddingTestsMixin, unittest.TestCase):
'verbose': True,
'quiet': True,
'buffered_stdio': False,
'remote_debug': True,
'user_site_directory': False,
'pathconfig_warnings': False,
}
@ -1031,6 +1032,7 @@ class InitConfigTests(EmbeddingTestsMixin, unittest.TestCase):
'write_bytecode': False,
'verbose': 1,
'quiet': True,
'remote_debug': True,
'configure_c_stdio': True,
'buffered_stdio': False,
'user_site_directory': False,