- 05 Eki, 2011 3 kayıt (commit)
-
-
Victor Stinner yazdı
* str[a:b] doesn't scan the string for the maximum character if the string is ascii only * PyUnicode_FromKindAndData() stops if we are sure that we cannot use a shorter character type. For example, _PyUnicode_FromUCS1() stops if we have at least one character in range U+0080-U+00FF
-
Victor Stinner yazdı
It is faster for long string and a little bit faster for short strings, benchmark on Linux 32 bits, Intel Core i5 @ 3.33GHz: ./python -m timeit 'x=b"a"' 'x.decode("ascii")' ./python -m timeit 'x=b"x"*80' 'x.decode("ascii")' ./python -m timeit 'x=b"abc"*4096' 'x.decode("ascii")' length | before | after -------+------------+----------- 1 | 0.234 usec | 0.229 usec 80 | 0.381 usec | 0.357 usec 12,288 | 11.2 usec | 3.01 usec
-
Antoine Pitrou yazdı
(followup to Victor's 85d11cf67aa8 and 7a50e549bd11)
-
- 04 Eki, 2011 37 kayıt (commit)
-
-
Charles-François Natali yazdı
-
Charles-François Natali yazdı
-
Charles-François Natali yazdı
-
Victor Stinner yazdı
-
Victor Stinner yazdı
-
Charles-François Natali yazdı
root, since the semantics varies across Unix variants.
-
Charles-François Natali yazdı
root, since the semantics varies across Unix variants.
-
Victor Stinner yazdı
Use also _PyUnicode_READY_REPLACE() when it's applicable.
-
Victor Stinner yazdı
-
Antoine Pitrou yazdı
-
Charles-François Natali yazdı
-
Charles-François Natali yazdı
root (directory permissions are ignored).
-
Charles-François Natali yazdı
root (directory permissions are ignored).
-
Antoine Pitrou yazdı
-
Antoine Pitrou yazdı
-
Antoine Pitrou yazdı
-
Ezio Melotti yazdı
-
Antoine Pitrou yazdı
-
Antoine Pitrou yazdı
-
Antoine Pitrou yazdı
-
Antoine Pitrou yazdı
-
Antoine Pitrou yazdı
-
Antoine Pitrou yazdı
-
Antoine Pitrou yazdı
-
Antoine Pitrou yazdı
-
Antoine Pitrou yazdı
-
Antoine Pitrou yazdı
Reported and diagnosed by Thomas Kluyver.
-
Antoine Pitrou yazdı
Reported and diagnosed by Thomas Kluyver.
-
Antoine Pitrou yazdı
-
Antoine Pitrou yazdı
if the underlying raw stream is unseekable, even if the seek could be satisfied using the internal buffer. Patch by John OConnor.
-
Antoine Pitrou yazdı
-
Antoine Pitrou yazdı
if the underlying raw stream is unseekable, even if the seek could be satisfied using the internal buffer. Patch by John O'Connor.
-
Antoine Pitrou yazdı
-
Antoine Pitrou yazdı
memory watchdog for timely stats collection.
-
Antoine Pitrou yazdı
-
Antoine Pitrou yazdı
- bigmemtest is replaced by precisionbigmemtest - add a poor man's watchdog thread to print memory consumption
-
Antoine Pitrou yazdı
- bigmemtest is replaced by precisionbigmemtest - add a poor man's watchdog thread to print memory consumption
-