Mintaka added the comment:
True, but this one is much more used then others. So frequently, that
look like other names are aliases. Maybe it is good reason to mention it
explicitly.
--
___
Python tracker
<http://bugs.python.org/issue6
New submission from Mintaka :
On page
http://docs.python.org/dev/3.0/library/codecs.html#standard-encodings
(and on the pages for older versions too)
in the table with review, is missing higly used alias "utf-8"
On that row is only:
Codec Aliases Languages
utf_8 U8, UTF,
Mintaka added the comment:
Thanks for clarification. I compared it with iter([0,1,2,3,4]).__str__()
which behaviour seems to me closer then list or tuple.
--
___
Python tracker
<http://bugs.python.org/issue6
Changes by Mintaka :
--
type: -> behavior
___
Python tracker
<http://bugs.python.org/issue6762>
___
___
Python-bugs-list mailing list
Unsubscri
New submission from Mintaka :
String representation of xrange return keyword with value.
foo = xrange(5)
print foo
>>> xrange(5)
foo.__str__()
>>> xrange(5)
I think, that expected result should be somethink like this:
>>>
--
components: Interpreter Core
me