Skip to content
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

types.IntType, types.LongType treated differently to int, long #264

Open
Hooloovoo opened this issue Jan 19, 2017 · 0 comments
Open

types.IntType, types.LongType treated differently to int, long #264

Hooloovoo opened this issue Jan 19, 2017 · 0 comments

Comments

@Hooloovoo
Copy link

Currently,

if type(time) not in (int, long):
is not converted by
futurize --stage1 -w file.py
(version 0.15.2)
but:
if type(time) not in (types.IntType, types.LongType):
is converted to:
if type(time) not in (int, int)

I would have thought that these two should be treated the same.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

2 participants