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 3a4c818 commit b93f48cCopy full SHA for b93f48c
Lib/test/test_funcattrs.py
@@ -486,6 +486,7 @@ def test_builtin__qualname__(self):
486
487
# builtin classmethod:
488
self.assertEqual(dict.fromkeys.__qualname__, 'dict.fromkeys')
489
+ self.assertEqual(int.from_bytes.__qualname__, 'int.from_bytes')
490
491
# builtin staticmethod:
492
self.assertEqual(str.maketrans.__qualname__, 'str.maketrans')
@@ -507,6 +508,7 @@ def test_builtin__self__(self):
507
508
509
510
self.assertIs(dict.fromkeys.__self__, dict)
511
+ self.assertIs(int.from_bytes.__self__, int)
512
513
514
self.assertIsNone(str.maketrans.__self__)
0 commit comments