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 christian.heimes
Recipients christian.heimes, songma
Date 2008-01-23.09:37:13
SpamBayes Score 0.036304627
Marked as misclassified No
Message-id <1201081035.39.0.186536465488.issue1915@psf.upfronthosting.co.za>
In-reply-to
Content
Python/ast.c has been fixed but more code needs to be fixed:

gcc -pthread -c -fno-strict-aliasing -DNDEBUG -g -fwrapv -O3 -Wall
-Wstrict-prototypes  -I. -IInclude -I./Include   -DPy_BUILD_CORE -o
Parser/tokenizer.o Parser/tokenizer.c
Parser/tokenizer.c: In function 'decode_str':
Parser/tokenizer.c:607: warning: assignment discards qualifiers from
pointer target type
Parser/tokenizer.c: In function 'dec_utf8':
Parser/tokenizer.c:1550: warning: implicit declaration of function
'PyUnicode_DecodeUTF8'
Parser/tokenizer.c:1550: warning: initialization makes pointer from
integer without a cast
Parser/tokenizer.c:1552: warning: implicit declaration of function
'PyUnicode_AsEncodedString'
Parser/tokenizer.c:1552: warning: assignment makes pointer from integer
without a cast

/home/heimes/dev/python/release25-maint/Parser/tokenizer.c:1550:
undefined reference to `PyUnicode_DecodeUTF8'
/home/heimes/dev/python/release25-maint/Parser/tokenizer.c:1552:
undefined reference to `PyUnicode_AsEncodedString'
/home/heimes/dev/python/release25-maint/Parser/tokenizer.c:1550:
undefined reference to `PyUnicode_DecodeUTF8'
/home/heimes/dev/python/release25-maint/Parser/tokenizer.c:1552:
undefined reference to `PyUnicode_AsEncodedString'
History
Date User Action Args
2008-01-23 09:37:15christian.heimessetspambayes_score: 0.0363046 -> 0.036304627
recipients: + christian.heimes, songma
2008-01-23 09:37:15christian.heimessetspambayes_score: 0.0363046 -> 0.0363046
messageid: <1201081035.39.0.186536465488.issue1915@psf.upfronthosting.co.za>
2008-01-23 09:37:14christian.heimeslinkissue1915 messages
2008-01-23 09:37:13christian.heimescreate