-
-
Notifications
You must be signed in to change notification settings - Fork 528
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Python 3 preparation: integer types #16072
Comments
comment:4
one step done in #22871 |
comment:6
after which there remains
among which
is only in doctests |
This comment has been minimized.
This comment has been minimized.
comment:7
Adding some tickets. |
comment:8
Should the ticket summary say 'The Py2 type "long" is gone in Py3' |
This comment has been minimized.
This comment has been minimized.
comment:10
new state of affairs on 8.2.b3
|
comment:11
see #24559 |
comment:12
shall we close this one ? |
Reviewer: Matthias Koeppe |
This was referenced Oct 24, 2017
Closed
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Python 2 has two integer types
int
andlong
. In Python 3,int
is gone andlong
is renamedint
.The tool 2to3 simply renames
long
toint
.There are 72 affected modules.
This ticket is tracked as a dependency of meta-ticket ticket:16052.
Tickets: #24221, #24225, #24227, #24244, #24247, #24248.
CC: @fchapoton @mkoeppe @tscrim
Component: python3
Reviewer: Matthias Koeppe
Issue created by migration from https://trac.sagemath.org/ticket/16072
The text was updated successfully, but these errors were encountered: