[issue26067] test_shutil fails when gid name is missing

2020-11-20 Thread Irit Katriel
Change by Irit Katriel : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___ ___

[issue26067] test_shutil fails when gid name is missing

2020-10-10 Thread Irit Katriel
Irit Katriel added the comment: This seems complete, can it be closed? -- nosy: +iritkatriel ___ Python tracker ___ ___

[issue26067] test_shutil fails when gid name is missing

2020-03-17 Thread Dino Viehland
Dino Viehland added the comment: New changeset 52268941f37e3e27bd01792b081877ec3bc9ce12 by Matthias Braun in branch 'master': bpo-26067: Do not fail test_shutil / chown when gid/uid cannot be resolved (#19032) https://github.com/python/cpython/commit/52268941f37e3e27bd01792b081877ec3bc9ce12

[issue26067] test_shutil fails when gid name is missing

2020-03-16 Thread Matthias Braun
Matthias Braun added the comment: I have the same issue on my work macbook which has some form of network login configured. The primary group id of my user account there cannot be found in the group database and cannot be resolved to a name. I'm not sure why that is but I am pretty sure

[issue26067] test_shutil fails when gid name is missing

2020-03-16 Thread Roundup Robot
Change by Roundup Robot : -- keywords: +patch nosy: +python-dev nosy_count: 3.0 -> 4.0 pull_requests: +18381 stage: needs patch -> patch review pull_request: https://github.com/python/cpython/pull/19032 ___ Python tracker

[issue26067] test_shutil fails when gid name is missing

2016-01-11 Thread Ezio Melotti
Ezio Melotti added the comment: We looked at this at the PyLadies Sprint in Helsinki. When the group has an id but not a name (see "gid=203135016" in the "id" output -- the name is missing), its entry is missing from the list returned by grp.getgrall(). If this behaviour is expected and

[issue26067] test_shutil fails when gid name is missing

2016-01-09 Thread Dinesh Wijekoon
Dinesh Wijekoon added the comment: This reported bug occurred in Mac OS. -- ___ Python tracker ___ ___

[issue26067] test_shutil fails when gid name is missing

2016-01-09 Thread Dinesh Wijekoon
New submission from Dinesh Wijekoon: ./python.exe -m test -j3 -v test_shutil The above test fails when id name is missing. The fail message is group = grp.getgrgid(gid)[0] KeyError: 'getgrgid(): gid not found: 203135016' Following is the results from console "id" command, when the failure