We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 327f563 commit ae5a942Copy full SHA for ae5a942
Lib/test/test_embed.py
@@ -315,9 +315,9 @@ def test_pre_initialization_sys_options(self):
315
print(out)
316
print(err)
317
expected_output = (
318
- "sys.warnoptions: ['once', 'module', 'default']\n"
+ "sys.warnoptions: ['default', 'once', 'module']\n"
319
"sys._xoptions: {'not_an_option': '1', 'also_not_an_option': '2'}\n"
320
- "warnings.filters[:3]: ['default', 'module', 'once']\n"
+ "warnings.filters[:3]: ['module', 'once', 'default']\n"
321
)
322
self.assertIn(expected_output, out)
323
self.assertEqual(err, '')
0 commit comments