[issue32637] Android: set sys.platform to android

2018-05-29 Thread STINNER Victor
STINNER Victor added the comment: Sadly, I failed to find anyone to help me on this issue and I lost interest on supporting Android, so I just close the issue. Sorry. -- resolution: -> out of date stage: patch review -> resolved status: open -> closed ___

[issue32637] Android: set sys.platform to android

2018-01-30 Thread Xavier G. Domingo
Change by Xavier G. Domingo : -- nosy: +xgdomingo ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail

[issue32637] Android: set sys.platform to android

2018-01-25 Thread Xavier de Gaye
Change by Xavier de Gaye : -- nosy: -xdegaye ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.pyt

[issue32637] Android: set sys.platform to android

2018-01-24 Thread STINNER Victor
STINNER Victor added the comment: I propose to leave MACHDEP unchanged: keep MACHDEP="linux". Can it create inconsistencies? Is it an issue in practice? My short term goal is to use sys.platform == 'android' has the reference test to check if we are running on Android. -- __

[issue32637] Android: set sys.platform to android

2018-01-23 Thread STINNER Victor
Change by STINNER Victor : -- nosy: +yan12125 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.pyt

[issue32637] Android: set sys.platform to android

2018-01-23 Thread STINNER Victor
STINNER Victor added the comment: A similar change was proposed by pmp-p on MicroPython: https://github.com/micropython/micropython/pull/3564 His use case is to use ffi module on Android (see the PR for more information), currently ffi fails to locate libraries. -- _

[issue32637] Android: set sys.platform to android

2018-01-23 Thread STINNER Victor
Change by STINNER Victor : -- nosy: +doko ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.python.

[issue32637] Android: set sys.platform to android

2018-01-23 Thread STINNER Victor
Change by STINNER Victor : -- nosy: +brett.cannon ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail

[issue32637] Android: set sys.platform to android

2018-01-23 Thread STINNER Victor
STINNER Victor added the comment: The idea was first discussed on python-dev: https://mail.python.org/pipermail/python-dev/2018-January/151874.html me: "It seems like sys.platform == 'android' would be more appropriate since Android is not Linux: different libc, different filesystems, etc." h

[issue32637] Android: set sys.platform to android

2018-01-23 Thread STINNER Victor
Change by STINNER Victor : -- pull_requests: +5134 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mai

[issue32637] Android: set sys.platform to android

2018-01-23 Thread STINNER Victor
Change by STINNER Victor : -- keywords: +patch pull_requests: +5133 stage: -> patch review ___ Python tracker ___ ___ Python-bugs-li

[issue32637] Android: set sys.platform to android

2018-01-23 Thread pmpp
Change by pmpp : -- nosy: +pmpp ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.python.org/mailma

[issue32637] Android: set sys.platform to android

2018-01-23 Thread STINNER Victor
STINNER Victor added the comment: Wait, os.name is 'posix' on Android. That's fine in fact. Only sys.platform should be updated. -- title: Android: set sys.platform and os.name to android -> Android: set sys.platform to android ___ Python tracker