This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author xdegaye
Recipients Alex.Willmer, larry, serhiy.storchaka, xdegaye, yan12125
Date 2016-05-10.15:09:26
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1462892967.12.0.755423852459.issue26944@psf.upfronthosting.co.za>
In-reply-to
Content
'id -G' produces the expected result on an android-23-x86 emulator running Android 6.0 (API 23).

There is a new error now instead of the one reported at issue #26932:

======================================================================
FAIL: test_getgroups (test.test_posix.PosixTester)
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/sdcard/org.bitbucket.pyona/lib/python3.6/test/test_posix.py", line 816, in test_getgroups
    set(posix.getgroups() + [posix.getegid()]))
AssertionError: Items in the second set but not the first:
0


The problem is that posix.getegid() returns 0, and 0 is not in the list printed by 'id -G'.
History
Date User Action Args
2016-05-10 15:09:27xdegayesetrecipients: + xdegaye, larry, serhiy.storchaka, Alex.Willmer, yan12125
2016-05-10 15:09:27xdegayesetmessageid: <1462892967.12.0.755423852459.issue26944@psf.upfronthosting.co.za>
2016-05-10 15:09:27xdegayelinkissue26944 messages
2016-05-10 15:09:26xdegayecreate