[issue18708] Change required in python 3.4 interpretor .

2013-08-11 Thread Mark Dickinson
Mark Dickinson added the comment: Unlike C, Python doesn't have any 'character' type: the elements of a string are simply 1-character strings. The two quote styles are mostly interchangeable: again, unlike C, there's no particular meaning attached to the use of single quotes or double quote

[issue18708] Change required in python 3.4 interpretor .

2013-08-10 Thread madan ram
New submission from madan ram: As I observed when using python 3.4 Interpretor is that it would be able to distinguish between char by '' and string by "" >>> input() a 'a' and >>> input() aa 'aa' it would be better if output was "aa" but if i want to fix this which file to edit. ---