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 gvanrossum
Recipients donmez, gvanrossum
Date 2007-12-13.19:01:27
SpamBayes Score 0.015824981
Marked as misclassified No
Message-id <ca471dc20712131101u604d27e7m71f6a9638950d677@mail.gmail.com>
In-reply-to <1197571097.05.0.550697568027.issue1608@psf.upfronthosting.co.za>
Content
> This is a soon to be released GCC though I won't deny it has
> regressions, but note that extra optimizations already uncovered bugs in
> other software.

And the GCC authors always win these cases, C standard in hand.

> And unless I can get a minimal C testcase, GCC bug will be worthless.
>
> Exact crashling call is string_tests.py line 255 :
>
> self.checkraises(OverflowError,
>                              '\ta\n\tb', 'expandtabs', sys.maxint)
>
> Commenting out this fixes the crash.

If you want for me to debug this myself it'll be ages. it looks like
the crashing call is

'\ta\n\tb'.expandtabs(2147483647)

Can you confirm that this crashes? If it does, you should be able to
use gdb to step through expandtabs() and hopefully analyze the
problem.
History
Date User Action Args
2007-12-13 19:01:27gvanrossumsetspambayes_score: 0.015825 -> 0.015824981
recipients: + gvanrossum, donmez
2007-12-13 19:01:27gvanrossumlinkissue1608 messages
2007-12-13 19:01:27gvanrossumcreate