You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
So I started my Kivy application on Android, only to have it crash right after the loading screen.
To my great surprise, the cause of the problem was:
from future_builtins import *
As I later found out, this is because the module is blacklisted.
This module is very useful for making Python 2 bearable behave more like Python 3 and it makes single-codebase 2.x+3.x compatibility easy. It is also very small (future_builtins.c is 3.0 KiB and future_builtins.so is 7.5 KiB).
I think it should not be blacklisted.
So I started my Kivy application on Android, only to have it crash right after the loading screen.
To my great surprise, the cause of the problem was:
As I later found out, this is because the module is blacklisted.
This module is very useful for making Python 2
bearablebehave more like Python 3 and it makes single-codebase 2.x+3.x compatibility easy. It is also very small (future_builtins.c is 3.0 KiB and future_builtins.so is 7.5 KiB).I think it should not be blacklisted.
Want to back this issue? Post a bounty on it! We accept bounties via Bountysource.
The text was updated successfully, but these errors were encountered: