diff options
author | Tim Peters <tim.peters@gmail.com> | 2003-02-02 07:51:32 (GMT) |
---|---|---|
committer | Tim Peters <tim.peters@gmail.com> | 2003-02-02 07:51:32 (GMT) |
commit | bf2674be0e95787cdeb154091b7377e30b2827bf (patch) | |
tree | 05ccb3b212ff3027587b948678959f7b6ca61546 /Misc | |
parent | 06dd8cf5e4100303714f9e3f72b3c52330fdd51c (diff) | |
download | cpython-bf2674be0e95787cdeb154091b7377e30b2827bf.zip cpython-bf2674be0e95787cdeb154091b7377e30b2827bf.tar.gz cpython-bf2674be0e95787cdeb154091b7377e30b2827bf.tar.bz2 |
long(string, base) now takes time linear in len(string) when base is a
power of 2. Enabled the tail end of test_long() in pickletester.py
because it no longer takes forever when run from test_pickle.py.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -12,6 +12,9 @@ What's New in Python 2.3 alpha 2? Core and builtins ----------------- +- long(string, base) takes time linear in len(string) when base is a power + of 2 now. It used to take time quadratic in len(string). + - filter returns now Unicode results for Unicode arguments. - raw_input can now return Unicode objects. |