[issue26927] android: test_mmap fails

2016-05-03 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: This is other manifestation of issue26926. -- nosy: +serhiy.storchaka resolution: -> duplicate stage: -> resolved status: open -> closed superseder: -> android: test_io fails ___ Python tracker

[issue26932] android: test_posix fails

2016-05-03 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: What RTLD_* constants exist on Android? -- nosy: +serhiy.storchaka ___ Python tracker ___ ___ Pyth

[issue26915] Test identity first in membership operation of ItemsView, ValuesView and Sequence in collections.abc

2016-05-03 Thread Xiang Zhang
Xiang Zhang added the comment: I agree with you josh. Actually that's what I want to know, consistency. But I don't mention it in my post, so Guido only gives what to do in this case. In this thread, it means does Python code have to keep the invariant mentioned in msg75735? -- _

[issue26932] android: test_posix fails

2016-05-03 Thread Chi Hsuan Yen
Chi Hsuan Yen added the comment: On Android RTLD_* constants are not defined via macros but as enum values. I guess CPython needs to check each one in configure.ac. See [1] [1] https://android.googlesource.com/platform/bionic/+/master/libc/include/dlfcn.h -- nosy: +Chi Hsuan Yen

[issue26922] build from fresh checkout fails

2016-05-03 Thread Nick Coghlan
Nick Coghlan added the comment: Even updating from remote, and then making a fresh clone in a new directory, I can't reproduce this one - "./configure && make -j4" works for me. Does strace give any potentially useful hints? For me: $ strace -e trace=file ./python -c "pass" the apparentl

[issue26932] android: test_posix fails

2016-05-03 Thread Chi Hsuan Yen
Chi Hsuan Yen added the comment: Patch attached for improved RTLD_* checking. -- keywords: +patch Added file: http://bugs.python.org/file42703/posixmodule_rtld_constants.patch ___ Python tracker ___

[issue26932] android: test_posix fails

2016-05-03 Thread Chi Hsuan Yen
Chi Hsuan Yen added the comment: For test_getgroups, in Android 5.1 `id` does not support -G. [1] In Android 6.x `id` seems to support -G. [2] I guess CPython can just skip the test on Android < 6.0. [1] https://android.googlesource.com/platform/system/core/+/android-5.1.1_r37/toolbox/id.c [2

[issue26932] android: test_posix fails

2016-05-03 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- assignee: -> serhiy.storchaka ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue26932] android: test_posix fails

2016-05-03 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: LGTM. But needed to update pyconfig.h.in and configure. RTLD_* constants are also used in Modules/_ctypes/_ctypes.c and Python/pystate.c (this can be a cause of threading and ctypes issues on Android). -- ___ Pyt

[issue26932] android: test_posix fails

2016-05-03 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- nosy: +haypo ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.pyth

[issue22107] tempfile module misinterprets access denied error on Windows

2016-05-03 Thread Billy McCulloch
Billy McCulloch added the comment: I've also run into this bug on Windows. In my case, the tempdir path includes directories on a network share, which I lack write access permissions to. Python tries to generate a *lot* of files, and never figures out it should move on to another directory. Th

[issue26926] Large files are not supported on Android

2016-05-03 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- title: android: test_io fails -> Large files are not supported on Android ___ Python tracker ___ ___

[issue26932] android: test_posix fails

2016-05-03 Thread Chi Hsuan Yen
Chi Hsuan Yen added the comment: Version 2. -- Added file: http://bugs.python.org/file42705/rtld_constants.patch ___ Python tracker ___ __

[issue26932] RTLD_* macros are not defined on Android

2016-05-03 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- nosy: +amaury.forgeotdarc, belopolsky, meador.inge, pitrou stage: -> patch review title: android: test_posix fails -> RTLD_* macros are not defined on Android ___ Python tracker __

[issue26932] RTLD_* macros are not defined on Android

2016-05-03 Thread Roundup Robot
Roundup Robot added the comment: New changeset 811ccdee6f87 by Serhiy Storchaka in branch 'default': Issue #26932: Fixed support of RTLD_* constants defined as enum values, https://hg.python.org/cpython/rev/811ccdee6f87 -- nosy: +python-dev ___ Python

[issue26932] RTLD_* macros are not defined on Android

2016-05-03 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Thank you Chi Hsuan Yen. Please open separate issue for "id -G". -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker _

[issue26932] RTLD_* macros are not defined on Android

2016-05-03 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Xavier, please check that issues with ctypes and threading are not gone. -- ___ Python tracker ___ ___

<    1   2