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 andre
Recipients andre
Date 2008-11-24.18:16:48
SpamBayes Score 4.0544824e-06
Marked as misclassified No
Message-id <1227550609.93.0.240511987484.issue4410@psf.upfronthosting.co.za>
In-reply-to
Content
Python 3.0 rc3 on Windows (Server 2003 US English)

The code with a string including a non ascii character:

s = 'abçd'
print (s)

is returning correct result in console mode and when it's typed in the 
IDLE Python Shell

But when executed from an IDLE editor window with Run/Run Module
it prints 5 characters instead of 4.

With more details, the code:

s = 'abçd'
print (s)

for i in range(len(s)):
    print(hex(ord(s[i])),end=' ')
    
  
gives  in console mode:

abçd
0x61 0x62 0xe7 0x64

but with Run/Run Module:

abçd
0x61 0x62 0xc3 0xa7 0x64
History
Date User Action Args
2008-11-24 18:16:50andresetrecipients: + andre
2008-11-24 18:16:49andresetmessageid: <1227550609.93.0.240511987484.issue4410@psf.upfronthosting.co.za>
2008-11-24 18:16:49andrelinkissue4410 messages
2008-11-24 18:16:48andrecreate