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 Michael.Clerx
Recipients Jeffrey.Armstrong, Martin.Fiers, Michael.Clerx, Pete.Forman, RubyTuesdayDONO, Seppo.Yli-Olli, alexis, christian.heimes, cmcqueen1975, danmbox, doko, eric.araujo, fratti, gaudyallure52, geertj, honorableinvasi, jkloth, jonforums, jwilk, lemburg, lewisl, loewis, oscarbenjamin, paul.moore, pitrou, pje, python-dev, rivy, rpetrov, rubenvb, santoso.wijaya, schmir, stakingrainbow2, tarek
Date 2015-03-14.00:02:05
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1426291325.56.0.499850016148.issue12641@psf.upfronthosting.co.za>
In-reply-to
Content
I'm seeing this bug in 2.7.9. The reason seems to be that the version detection doesn't work...

This snippet:

  out = os.popen(gcc_exe + ' -dumpversion', 'r')
  out_string = out.read()

returns an empty out_string, causing gcc_version = None < '4'

Maybe the < '4' check could be restructured to see None as "probably modern" instead of "probably very out of date" ?
History
Date User Action Args
2015-03-14 00:02:05Michael.Clerxsetrecipients: + Michael.Clerx, lemburg, loewis, doko, paul.moore, pje, geertj, pitrou, christian.heimes, schmir, tarek, jkloth, jwilk, eric.araujo, rpetrov, cmcqueen1975, rubenvb, santoso.wijaya, alexis, python-dev, Seppo.Yli-Olli, jonforums, RubyTuesdayDONO, Jeffrey.Armstrong, danmbox, Martin.Fiers, oscarbenjamin, Pete.Forman, fratti, rivy, gaudyallure52, honorableinvasi, stakingrainbow2, lewisl
2015-03-14 00:02:05Michael.Clerxsetmessageid: <1426291325.56.0.499850016148.issue12641@psf.upfronthosting.co.za>
2015-03-14 00:02:05Michael.Clerxlinkissue12641 messages
2015-03-14 00:02:05Michael.Clerxcreate