[issue41211] PyLong_FromUnicodeObject document is wrong

2020-07-04 Thread Inada Naoki
Change by Inada Naoki : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___ ___

[issue41211] PyLong_FromUnicodeObject document is wrong

2020-07-04 Thread miss-islington
miss-islington added the comment: New changeset 01c0925271a9e8c6a4b316efeb8fdcbed9eb17f4 by Miss Islington (bot) in branch '3.8': bpo-41211: Doc: Fix PyLong_FromUnicode (GH-21331) https://github.com/python/cpython/commit/01c0925271a9e8c6a4b316efeb8fdcbed9eb17f4 --

[issue41211] PyLong_FromUnicodeObject document is wrong

2020-07-04 Thread miss-islington
Change by miss-islington : -- pull_requests: +20482 pull_request: https://github.com/python/cpython/pull/21332 ___ Python tracker ___

[issue41211] PyLong_FromUnicodeObject document is wrong

2020-07-04 Thread Inada Naoki
Inada Naoki added the comment: New changeset 16f451744b7f4653ca9db4b4bedbb6fc5c0de154 by Inada Naoki in branch '3.9': bpo-41211: Doc: Fix PyLong_FromUnicode (GH-21331) https://github.com/python/cpython/commit/16f451744b7f4653ca9db4b4bedbb6fc5c0de154 --

[issue41211] PyLong_FromUnicodeObject document is wrong

2020-07-04 Thread Inada Naoki
Change by Inada Naoki : -- pull_requests: +20481 pull_request: https://github.com/python/cpython/pull/21331 ___ Python tracker ___

[issue41211] PyLong_FromUnicodeObject document is wrong

2020-07-04 Thread miss-islington
miss-islington added the comment: New changeset 4874e5908c38da4c7dcaecf6397832dda1e6dd08 by Miss Islington (bot) in branch '3.8': bpo-41211: Doc: Fix PyLong_FromUnicodeObject (GH-21325) https://github.com/python/cpython/commit/4874e5908c38da4c7dcaecf6397832dda1e6dd08 --

[issue41211] PyLong_FromUnicodeObject document is wrong

2020-07-04 Thread miss-islington
miss-islington added the comment: New changeset 48f388f02f000fb9087a854c0dc77ce39bc2bb29 by Miss Islington (bot) in branch '3.9': bpo-41211: Doc: Fix PyLong_FromUnicodeObject (GH-21325) https://github.com/python/cpython/commit/48f388f02f000fb9087a854c0dc77ce39bc2bb29 --

[issue41211] PyLong_FromUnicodeObject document is wrong

2020-07-04 Thread miss-islington
Change by miss-islington : -- pull_requests: +20479 pull_request: https://github.com/python/cpython/pull/21329 ___ Python tracker ___

[issue41211] PyLong_FromUnicodeObject document is wrong

2020-07-04 Thread miss-islington
Change by miss-islington : -- nosy: +miss-islington nosy_count: 2.0 -> 3.0 pull_requests: +20478 pull_request: https://github.com/python/cpython/pull/21328 ___ Python tracker

[issue41211] PyLong_FromUnicodeObject document is wrong

2020-07-04 Thread Inada Naoki
Inada Naoki added the comment: New changeset 9c8441712230660fedac818ed50e7cdd89e4c51d by Inada Naoki in branch 'master': bpo-41211: Doc: Fix PyLong_FromUnicodeObject (GH-21325) https://github.com/python/cpython/commit/9c8441712230660fedac818ed50e7cdd89e4c51d --

[issue41211] PyLong_FromUnicodeObject document is wrong

2020-07-04 Thread Inada Naoki
Change by Inada Naoki : -- keywords: +patch pull_requests: +20475 stage: -> patch review pull_request: https://github.com/python/cpython/pull/21325 ___ Python tracker ___

[issue41211] PyLong_FromUnicodeObject document is wrong

2020-07-04 Thread Inada Naoki
New submission from Inada Naoki : ``` .. c:function:: PyObject* PyLong_FromUnicodeObject(PyObject *u, int base) Convert a sequence of Unicode digits in the string *u* to a Python integer value. The Unicode string is first encoded to a byte string using