This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author serhiy.storchaka
Recipients lschoe, mark.dickinson, pablogsal, rhettinger, serhiy.storchaka, skrah, steven.daprano, tim.peters
Date 2019-06-02.11:01:47
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1559473307.2.0.118866788397.issue36027@roundup.psfhosted.org>
In-reply-to
Content
PR 13266 introduced a compiler warning.

Objects/longobject.c: In function ‘long_invmod’:
Objects/longobject.c:4246:25: warning: passing argument 2 of ‘long_compare’ from incompatible pointer type [-Wincompatible-pointer-types]
     if (long_compare(a, _PyLong_One)) {
                         ^~~~~~~~~~~
Objects/longobject.c:3057:1: note: expected ‘PyLongObject * {aka struct _longobject *}’ but argument is of type ‘PyObject * {aka struct _object *}’
 long_compare(PyLongObject *a, PyLongObject *b)
 ^~~~~~~~~~~~
History
Date User Action Args
2019-06-02 11:01:47serhiy.storchakasetrecipients: + serhiy.storchaka, tim.peters, rhettinger, mark.dickinson, steven.daprano, skrah, pablogsal, lschoe
2019-06-02 11:01:47serhiy.storchakasetmessageid: <1559473307.2.0.118866788397.issue36027@roundup.psfhosted.org>
2019-06-02 11:01:47serhiy.storchakalinkissue36027 messages
2019-06-02 11:01:47serhiy.storchakacreate