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 eric.smith, ezio.melotti, mark.dickinson, serhiy.storchaka, vstinner, xtreak
Date 2018-11-27.07:10:07
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1543302608.05.0.788709270274.issue33954@psf.upfronthosting.co.za>
In-reply-to
Content
Objects/unicodeobject.c: In function ‘_PyUnicode_FastFill’:
Objects/unicodeobject.c:10126:24: warning: passing argument 2 of ‘unicode_fill’ discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers]
     unicode_fill(kind, data, fill_char, start, length);
                        ^~~~
Objects/unicodeobject.c:224:1: note: expected ‘void *’ but argument is of type ‘const void *’
 unicode_fill(enum PyUnicode_Kind kind, void *data, Py_UCS4 value,
 ^~~~~~~~~~~~
In file included from /usr/include/wchar.h:850:0,
                 from ./Include/unicodeobject.h:97,
                 from ./Include/Python.h:87,
                 from ./Modules/getpath.c:3:
History
Date User Action Args
2018-11-27 07:10:08serhiy.storchakasetrecipients: + serhiy.storchaka, mark.dickinson, vstinner, eric.smith, ezio.melotti, xtreak
2018-11-27 07:10:08serhiy.storchakasetmessageid: <1543302608.05.0.788709270274.issue33954@psf.upfronthosting.co.za>
2018-11-27 07:10:08serhiy.storchakalinkissue33954 messages
2018-11-27 07:10:07serhiy.storchakacreate