[issue45859] test_collections has a wrong test in case _itemgetter is not available

2021-12-10 Thread Łukasz Langa
Łukasz Langa added the comment: New changeset 7c5b01b5101923fc38274c491bd55239ee9f0416 by Miss Islington (bot) in branch '3.8': bpo-45859: Mark test_field_descriptor in test_collections as CPython-only (GH-29691) (GH-29710) https://github.com/python/cpython/commit/7c5b01b5101923fc38274c491bd5

[issue45859] test_collections has a wrong test in case _itemgetter is not available

2021-11-22 Thread Raymond Hettinger
Change by Raymond Hettinger : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___ ___

[issue45859] test_collections has a wrong test in case _itemgetter is not available

2021-11-22 Thread Raymond Hettinger
Raymond Hettinger added the comment: New changeset 455ed45d7c30c5f2a31c524b015c48ac85f3d27c by Miss Islington (bot) in branch '3.9': bpo-45859: Mark test_field_descriptor in test_collections as CPython-only (GH-29691) (GH-29709) https://github.com/python/cpython/commit/455ed45d7c30c5f2a31c52

[issue45859] test_collections has a wrong test in case _itemgetter is not available

2021-11-22 Thread Raymond Hettinger
Raymond Hettinger added the comment: New changeset 56b5cd52ab58d8f2f11f253ec1bb3e6000d2dbd2 by Miss Islington (bot) in branch '3.10': bpo-45859: Mark test_field_descriptor in test_collections as CPython-only (GH-29691) (GH-29708) https://github.com/python/cpython/commit/56b5cd52ab58d8f2f11f2

[issue45859] test_collections has a wrong test in case _itemgetter is not available

2021-11-22 Thread miss-islington
Change by miss-islington : -- pull_requests: +27946 pull_request: https://github.com/python/cpython/pull/29710 ___ Python tracker ___ __

[issue45859] test_collections has a wrong test in case _itemgetter is not available

2021-11-22 Thread miss-islington
Change by miss-islington : -- pull_requests: +27945 pull_request: https://github.com/python/cpython/pull/29709 ___ Python tracker ___ __

[issue45859] test_collections has a wrong test in case _itemgetter is not available

2021-11-22 Thread miss-islington
Change by miss-islington : -- nosy: +miss-islington nosy_count: 2.0 -> 3.0 pull_requests: +27944 pull_request: https://github.com/python/cpython/pull/29708 ___ Python tracker _

[issue45859] test_collections has a wrong test in case _itemgetter is not available

2021-11-22 Thread Raymond Hettinger
Raymond Hettinger added the comment: New changeset 4fad314246399b69ef0c57ba8527d9efade99069 by Carl Friedrich Bolz-Tereick in branch 'main': bpo-45859: Mark test_field_descriptor in test_collections as CPython-only (GH-29691) https://github.com/python/cpython/commit/4fad314246399b69ef0c57ba8

[issue45859] test_collections has a wrong test in case _itemgetter is not available

2021-11-21 Thread Raymond Hettinger
Change by Raymond Hettinger : -- assignee: -> rhettinger nosy: +rhettinger ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue45859] test_collections has a wrong test in case _itemgetter is not available

2021-11-21 Thread Carl Friedrich Bolz-Tereick
Change by Carl Friedrich Bolz-Tereick : -- keywords: +patch pull_requests: +27929 stage: -> patch review pull_request: https://github.com/python/cpython/pull/29691 ___ Python tracker

[issue45859] test_collections has a wrong test in case _itemgetter is not available

2021-11-21 Thread Carl Friedrich Bolz-Tereick
New submission from Carl Friedrich Bolz-Tereick : test_field_descriptor in test_collections tries to pickle the descriptors of a namedtuple's fields, which is _collections._itemgetter on CPython. However, on PyPy that class doesn't exist. The code in collections deals fine with that fact, but