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 barry-scott
Recipients barry-scott, ned.deily, ronaldoussoren
Date 2012-12-31.10:58:29
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1356951509.35.0.595897362403.issue16821@psf.upfronthosting.co.za>
In-reply-to
Content
Why not use IDLE? Workbench is a lot of code and dependencies.

I expect that it works because idle.app was created using the --no-zipimport option that is new in 2.7.

However with zip import the code is badly broken.

Build IDLE.app with zip import and you should reproduce the bug.

Have you code inspected the module as I suggested to review the new code?

_getSiteCode is clearly wrong. The if is backwards and no else.

The following inserts are in the wrong order:

if %(optimize)s:
    sys.argv.insert(1, '-O')

sys.argv.insert(1, mainprogram)
History
Date User Action Args
2012-12-31 10:58:29barry-scottsetrecipients: + barry-scott, ronaldoussoren, ned.deily
2012-12-31 10:58:29barry-scottsetmessageid: <1356951509.35.0.595897362403.issue16821@psf.upfronthosting.co.za>
2012-12-31 10:58:29barry-scottlinkissue16821 messages
2012-12-31 10:58:29barry-scottcreate