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 tim.golden
Recipients stier08, tim.golden
Date 2010-06-01.14:54:12
SpamBayes Score 0.052128464
Marked as misclassified No
Message-id <4C051F10.8030208@timgolden.me.uk>
In-reply-to <1275403238.02.0.475988525563.issue8869@psf.upfronthosting.co.za>
Content
Since execfile is basically shorthand for exec (open (filename).read ()),
and since open (filename) *does* support the full range of filepath
syntax on Windows, and since execfile has been removed in py3k in favour
of exec (open ...)), and since Python 2.x is nearing its end-of-life,
I doubt this issue will garner much sympathy.

I haven't actually looked at the code to discover just *why* execfile
doesn't support that style of filename. But is there any reason you
can't use exec (open (...))?
History
Date User Action Args
2010-06-01 14:54:14tim.goldensetrecipients: + tim.golden, stier08
2010-06-01 14:54:12tim.goldenlinkissue8869 messages
2010-06-01 14:54:12tim.goldencreate