On 23 fév, 16:43, Steve Simmons <square.st...@gmail.com> wrote:
> On 22/02/2013 22:37, piterrr.dolin...@gmail.com wrote:> So far I am getting 
> the impression
...
>
> My main message to you would be :  don't approach Python with a negative
> attitude, give it a chance and I'm sure you'll come to enjoy it.
>

----

Until you realize this:

Py32:

>>> timeit.timeit("'abc需'")
0.032749386495456466
>>> sys.getsizeof('abc需')
42

Py33:

>>> timeit.timeit("'abc需'")
0.04104208536801017
>>> sys.getsizeof('abc需')
50

Very easy to explain: wrong, incorrect, naive unicode
handling.

jmf


-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to