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 01337cf commit 97e075bCopy full SHA for 97e075b
Lib/test/test_traceback.py
@@ -4264,8 +4264,10 @@ class B:
4264
attr_µ = None # attr_\xb5
4265
4266
suggestion = self.get_suggestion(B(), 'attr_\xb5')
4267
- self.assertIn("'.attr_\u03bc' ('attr_\\u03bc')", suggestion)
4268
- self.assertIn("'.attr_\xb5' ('attr_\\xb5')", suggestion)
+ self.assertIn(
+ "'.attr_\u03bc' ('attr_\\u03bc') "
4269
+ "instead of '.attr_\xb5' ('attr_\\xb5')",
4270
+ suggestion)
4271
self.assertNotIn("attr_a", suggestion)
4272
4273
0 commit comments