mirror of
https://github.com/python/cpython.git
synced 2025-10-17 20:28:43 +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
|
@ -183,8 +183,8 @@ else:
|
|||
__version__ = "1.0.1"
|
||||
|
||||
# xmlrpc integer limits
|
||||
MAXINT = 2L**31-1
|
||||
MININT = -2L**31
|
||||
MAXINT = 2**31-1
|
||||
MININT = -2**31
|
||||
|
||||
# --------------------------------------------------------------------
|
||||
# Error constants (from Dan Libby's specification at
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue