[issue27679] set_bitfields() unused in _ctypes_test

2019-07-09 Thread STINNER Victor
STINNER Victor added the comment: I don't feel the need to backport the change to Python 3.8 and older. Having an unused in a test module (_ctypes_test) doesn't hurt. I close the issue. Thanks Martin Panter for the report, thanks Hai Shi for the fix ;-) -- resolution: -> fixed

[issue27679] set_bitfields() unused in _ctypes_test

2019-07-09 Thread STINNER Victor
STINNER Victor added the comment: New changeset 3a3db970de344efbb4017fb9dde9204f0fd4bbdc by Victor Stinner (Hai Shi) in branch 'master': bpo-27679: Remove set_bitfields() from _ctypes_test (GH-14648) https://github.com/python/cpython/commit/3a3db970de344efbb4017fb9dde9204f0fd4bbdc

[issue27679] set_bitfields() unused in _ctypes_test

2019-07-08 Thread hai shi
Change by hai shi : -- nosy: +shihai1991 versions: -Python 3.6 ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue27679] set_bitfields() unused in _ctypes_test

2019-07-08 Thread hai shi
Change by hai shi : -- keywords: +patch pull_requests: +14459 stage: -> patch review pull_request: https://github.com/python/cpython/pull/14648 ___ Python tracker ___

[issue27679] set_bitfields() unused in _ctypes_test

2019-04-17 Thread Joannah Nanjekye
Change by Joannah Nanjekye : -- nosy: +nanjekyejoannah ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue27679] set_bitfields() unused in _ctypes_test

2016-08-04 Thread Martin Panter
New submission from Martin Panter: Modules/_ctypes/_ctypes_test.c defines a structure called BITS and exports two C functions set_bitfields() and unpack_bitfields() that operate on it. However only unpack_bitfields() seems to have been used, in Lib/ctypes/test/test_bitfields.py. Either there