[issue43565] PyUnicode_KIND macro does not has specified return type

2021-07-29 Thread Petr Viktorin
Petr Viktorin added the comment: Thank you for your attention to detail! -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker

[issue43565] PyUnicode_KIND macro does not has specified return type

2021-07-29 Thread Petr Viktorin
Petr Viktorin added the comment: New changeset 7922546859e746a0f20f53bc80ce0581b72030aa by Miss Islington (bot) in branch '3.9': bpo-43565: Document PyUnicode_KIND's return type as an unsigned int (GH-25724) (GH-27440)

[issue43565] PyUnicode_KIND macro does not has specified return type

2021-07-29 Thread Petr Viktorin
Petr Viktorin added the comment: New changeset b5bdc0c407d2d0587e591989e390ada9b9709502 by Miss Islington (bot) in branch '3.10': bpo-43565: Document PyUnicode_KIND's return type as an unsigned int (GH-25724) (GH-27439)

[issue43565] PyUnicode_KIND macro does not has specified return type

2021-07-29 Thread Petr Viktorin
Petr Viktorin added the comment: New changeset 47fd4726a2ce8599cc397ddeae40f70eb471e868 by Ammar Askar in branch 'main': bpo-43565: Document PyUnicode_KIND's return type as an unsigned int (GH-25724) https://github.com/python/cpython/commit/47fd4726a2ce8599cc397ddeae40f70eb471e868

[issue43565] PyUnicode_KIND macro does not has specified return type

2021-07-29 Thread miss-islington
Change by miss-islington : -- nosy: +miss-islington nosy_count: 5.0 -> 6.0 pull_requests: +25968 pull_request: https://github.com/python/cpython/pull/27439 ___ Python tracker

[issue43565] PyUnicode_KIND macro does not has specified return type

2021-07-29 Thread miss-islington
Change by miss-islington : -- pull_requests: +25969 pull_request: https://github.com/python/cpython/pull/27440 ___ Python tracker ___

[issue43565] PyUnicode_KIND macro does not has specified return type

2021-04-29 Thread Ammar Askar
Change by Ammar Askar : -- keywords: +patch nosy: +ammar2 nosy_count: 4.0 -> 5.0 pull_requests: +24416 stage: -> patch review pull_request: https://github.com/python/cpython/pull/25724 ___ Python tracker

[issue43565] PyUnicode_KIND macro does not has specified return type

2021-03-26 Thread Terry J. Reedy
Change by Terry J. Reedy : -- nosy: +benjamin.peterson, ezio.melotti, lemburg ___ Python tracker ___ ___ Python-bugs-list mailing

[issue43565] PyUnicode_KIND macro does not has specified return type

2021-03-19 Thread Max Bachmann
New submission from Max Bachmann : The documentation stated, that the PyUnicode_KIND macro has the following interface: - int PyUnicode_KIND(PyObject *o) However it actually returns a value of the underlying type of the PyUnicode_Kind enum. This could be e.g. an unsigned int as well.