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 ZackerySpytz
Recipients Mark.Shannon, ZackerySpytz, jdemeyer, methane, petr.viktorin
Date 2019-07-17.15:04:30
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1563375870.93.0.561384844463.issue37337@roundup.psfhosted.org>
In-reply-to
Content
Commit b1263d5a60d3f7ab02dd28409fff59b3815a3f67 causes GCC 9.1.0 to give a warning in Objects/descrobject.c.

Objects/descrobject.c:1050:19: warning: cast between incompatible function types from ‘PyObject * (*)(mappingproxyobject *, PyObject * const*, Py_ssize_t)’ {aka ‘struct _object * (*)(struct <anonymous> *, struct _object * const*, long int)’} to ‘PyObject * (*)(PyObject *, PyObject *)’ {aka ‘struct _object * (*)(struct _object *, struct _object *)’} [-Wcast-function-type]
 1050 |     {"get",       (PyCFunction)mappingproxy_get,        METH_FASTCALL,
      |                   ^

PR 14814 fixes this.
History
Date User Action Args
2019-07-17 15:04:30ZackerySpytzsetrecipients: + ZackerySpytz, petr.viktorin, methane, Mark.Shannon, jdemeyer
2019-07-17 15:04:30ZackerySpytzsetmessageid: <1563375870.93.0.561384844463.issue37337@roundup.psfhosted.org>
2019-07-17 15:04:30ZackerySpytzlinkissue37337 messages
2019-07-17 15:04:30ZackerySpytzcreate