[issue46584] Modernize `ctypes/test_python_api` by removing old version check

2022-02-01 Thread Zachary Ware
Zachary Ware added the comment: Thanks for the patch! -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___

[issue46584] Modernize `ctypes/test_python_api` by removing old version check

2022-02-01 Thread miss-islington
miss-islington added the comment: New changeset 7368ca1b889d7fa16423e69034bf4c5fe7b00268 by Miss Islington (bot) in branch '3.9': [3.9] bpo-46584: remove check for `py2.3` from `ctypes/test_python_api` (GH-31024) (GH-31053)

[issue46584] Modernize `ctypes/test_python_api` by removing old version check

2022-02-01 Thread miss-islington
miss-islington added the comment: New changeset 8765b01bcf6514602affcca66e7deeeb998f9cef by Miss Islington (bot) in branch '3.10': [3.10] bpo-46584: remove check for `py2.3` from `ctypes/test_python_api` (GH-31024) (GH-31054)

[issue46584] Modernize `ctypes/test_python_api` by removing old version check

2022-02-01 Thread miss-islington
Change by miss-islington : -- pull_requests: +29235 pull_request: https://github.com/python/cpython/pull/31053 ___ Python tracker ___

[issue46584] Modernize `ctypes/test_python_api` by removing old version check

2022-02-01 Thread miss-islington
Change by miss-islington : -- pull_requests: +29236 pull_request: https://github.com/python/cpython/pull/31054 ___ Python tracker ___

[issue46584] Modernize `ctypes/test_python_api` by removing old version check

2022-02-01 Thread miss-islington
miss-islington added the comment: New changeset 913e340a323c7e61ae6e4acbb1312b4342657bec by Nikita Sobolev in branch 'main': bpo-46584: remove check for `py2.3` from `ctypes/test_python_api` (GH-31024) https://github.com/python/cpython/commit/913e340a323c7e61ae6e4acbb1312b4342657bec

[issue46584] Modernize `ctypes/test_python_api` by removing old version check

2022-01-30 Thread Nikita Sobolev
Change by Nikita Sobolev : -- keywords: +patch pull_requests: +29205 stage: -> patch review pull_request: https://github.com/python/cpython/pull/31024 ___ Python tracker ___

[issue46584] Modernize `ctypes/test_python_api` by removing old version check

2022-01-30 Thread Nikita Sobolev
New submission from Nikita Sobolev : Right now Lib/ctypes/test/test_python_api.py has these lines: ``` if sys.version_info > (2, 4): c_py_ssize_t = c_size_t else: c_py_ssize_t = c_int ``` Source: