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 brett.cannon
Recipients amaury.forgeotdarc, benjamin.peterson, brett.cannon, jmfauth, sjmachin, vstinner
Date 2009-03-24.23:40:12
SpamBayes Score 1.9910842e-06
Marked as misclassified No
Message-id <[email protected]>
In-reply-to <[email protected]>
Content
On Tue, Mar 24, 2009 at 09:24, Jean-Michel Fauth <[email protected]>wrote:

>
> Jean-Michel Fauth <[email protected]> added the comment:
>
> I'm glad to have discovered this topic. I bumped into something similar
> when I toyed with an interactive interpreter.
>
> from code import InteractiveInterpreter
>
> ii = InteractiveInterpreter()
> source = ...
> ii.runsource(source)
>
> What should be the encoding and/or the type (str, bytes) of the "source"
> string?

Off the top of my head it should be UTF-8. Otherwise it can probably be
bytes as long as it has universal newlines.
Files
File name Uploaded
unnamed brett.cannon, 2009-03-24.23:40:12
History
Date User Action Args
2009-03-24 23:40:14brett.cannonsetrecipients: + brett.cannon, sjmachin, amaury.forgeotdarc, vstinner, benjamin.peterson, jmfauth
2009-03-24 23:40:13brett.cannonlinkissue4626 messages
2009-03-24 23:40:13brett.cannoncreate