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 ledave123
Recipients ledave123, vstinner
Date 2011-07-28.08:11:41
SpamBayes Score 6.575912e-05
Marked as misclassified No
Message-id <1311840703.02.0.220619990678.issue12636@psf.upfronthosting.co.za>
In-reply-to
Content
The problem can be fixed with tokenize :
I'm sorry I never submitted a path and I have no access to the source tree from here, if someone cares to do it, do not hesitate.

    def execfile(self, filename, source=None):
        "Execute an existing file"
        if source is None:
            import tokenize
            source = tokenize.open(filename).read()
History
Date User Action Args
2011-07-28 08:11:43ledave123setrecipients: + ledave123, vstinner
2011-07-28 08:11:43ledave123setmessageid: <1311840703.02.0.220619990678.issue12636@psf.upfronthosting.co.za>
2011-07-28 08:11:42ledave123linkissue12636 messages
2011-07-28 08:11:41ledave123create