bpo-41873: Add vectorcall for float() (GH-22432)

This commit is contained in:
Dennis Sweeney 2020-09-28 20:55:52 -04:00 committed by GitHub
parent cb6db8b6ae
commit e8acc355d4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 23 additions and 0 deletions

View file

@ -64,6 +64,9 @@ class GeneralFloatCases(unittest.TestCase):
# See bpo-34087
self.assertRaises(ValueError, float, '\u3053\u3093\u306b\u3061\u306f')
def test_noargs(self):
self.assertEqual(float(), 0.0)
def test_underscores(self):
for lit in VALID_UNDERSCORE_LITERALS:
if not any(ch in lit for ch in 'jJxXoObB'):