sgzwiz / brython

Automatically exported from code.google.com/p/brython
BSD 3-Clause "New" or "Revised" License
0 stars 1 forks source link

repr different of python one #93

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
print(repr("hello"))
output:
hello

in python
>>> print(repr("hello"))
'hello'

if a __repr__ were set up it could be reused for the str representation of a 
dict

Original issue reported on code.google.com by xavier.combelle@gmail.com on 7 Mar 2013 at 6:10