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 kirkshorts
Recipients kirkshorts
Date 2008-08-28.13:05:05
SpamBayes Score 0.00022462691
Marked as misclassified No
Message-id <1219928750.12.0.164403487904.issue3713@psf.upfronthosting.co.za>
In-reply-to
Content
Checked out the PY3K branch and built. Received a warning 
about "characters after #ifdef ignored" from Objects/stringlib/find.h

the line in question is:

#ifdef STRINGLIB_WANT_CONTAINS_OBJ && !defined(FROM_BYTEARRAY)

Which is likely to mean that it will not do what is expected.

System is Ubuntu using GCC (otoh can't remember full compiler spec will 
post in later)

Patch to follow that modifies the above line to:

#if defined(STRINGLIB_WANT_CONTAINS_OBJ) && !defined(FROM_BYTEARRAY)

and will change the comment on the closing #endif too.

hope component choice is correct
History
Date User Action Args
2008-08-28 13:05:50kirkshortssetrecipients: + kirkshorts
2008-08-28 13:05:50kirkshortssetmessageid: <1219928750.12.0.164403487904.issue3713@psf.upfronthosting.co.za>
2008-08-28 13:05:06kirkshortslinkissue3713 messages
2008-08-28 13:05:05kirkshortscreate