mirror of
https://github.com/python/cpython.git
synced 2025-08-30 05:35:08 +00:00
Rip out 'long' and 'L'-suffixed integer literals.
(Rough first cut.)
This commit is contained in:
parent
fc7bb8c786
commit
e2a383d062
146 changed files with 1446 additions and 1477 deletions
|
@ -907,8 +907,8 @@ class DecimalUsabilityTest(unittest.TestCase):
|
|||
self.assertEqual(int(d2), 15)
|
||||
|
||||
#long
|
||||
self.assertEqual(long(d1), 66)
|
||||
self.assertEqual(long(d2), 15)
|
||||
self.assertEqual(int(d1), 66)
|
||||
self.assertEqual(int(d2), 15)
|
||||
|
||||
#float
|
||||
self.assertEqual(float(d1), 66)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue