- 07 Eyl, 2016 1 kayıt (commit)
-
-
Martin Panter yazdı
-
- 30 Agu, 2016 1 kayıt (commit)
-
-
Raymond Hettinger yazdı
-
- 27 Agu, 2016 1 kayıt (commit)
-
-
Martin Panter yazdı
Patch by Xiang Zhang.
-
- 15 Agu, 2016 1 kayıt (commit)
-
-
Serhiy Storchaka yazdı
and iterables. Speed up to 3 times for short objects. Original patch by Naoki Inada.
-
- 18 Tem, 2016 1 kayıt (commit)
-
-
Martin Panter yazdı
Patch by Xiang Zhang.
-
- 10 Tem, 2016 1 kayıt (commit)
-
-
Serhiy Storchaka yazdı
concatenations. Patch by Xiang Zhang.
-
- 03 Tem, 2016 2 kayıt (commit)
-
-
Serhiy Storchaka yazdı
negative integer for resized bytearray.
-
Serhiy Storchaka yazdı
For unknown reasons it perhaps caused a crash on 32-bit Windows (issue #).
-
- 01 Tem, 2016 2 kayıt (commit)
-
-
Serhiy Storchaka yazdı
file.
-
Serhiy Storchaka yazdı
now return an instance of corresponding subclass.
-
- 16 May, 2016 1 kayıt (commit)
-
-
Serhiy Storchaka yazdı
Patch by Joe Jevnik.
-
- 05 May, 2016 1 kayıt (commit)
-
-
Serhiy Storchaka yazdı
to a template file.
-
- 04 May, 2016 1 kayıt (commit)
-
-
Serhiy Storchaka yazdı
to bytes_methods.c.
-
- 02 May, 2016 1 kayıt (commit)
-
-
Serhiy Storchaka yazdı
Argument Clinic is now able to infer all needed information.
-
- 17 Nis, 2016 1 kayıt (commit)
-
-
Serhiy Storchaka yazdı
-
- 15 Nis, 2016 1 kayıt (commit)
-
-
Berker Peksag yazdı
-
- 30 Mar, 2016 1 kayıt (commit)
-
-
Serhiy Storchaka yazdı
Affected classes are generic sequence iterators, iterators of str, bytes, bytearray, list, tuple, set, frozenset, dict, OrderedDict, corresponding views and os.scandir() iterator.
-
- 21 Mar, 2016 1 kayıt (commit)
-
-
Victor Stinner yazdı
Issue #26574: Optimize bytes.replace(b'', b'.') and bytearray.replace(b'', b'.'): up to 80% faster. Patch written by Josh Snider.
-
- 15 Mar, 2016 2 kayıt (commit)
-
-
Victor Stinner yazdı
Issue #26564.
-
Victor Stinner yazdı
Issue #26564: _PyObject_DebugDumpAddress() now dumps the traceback where a memory block was allocated on memory block. Use the tracemalloc module to get the traceback.
-
- 25 Ara, 2015 1 kayıt (commit)
-
-
Serhiy Storchaka yazdı
-
- 19 Ara, 2015 1 kayıt (commit)
-
-
Serhiy Storchaka yazdı
This allows sys.getsize() to work correctly with their subclasses with __slots__ defined.
-
- 14 Kas, 2015 1 kayıt (commit)
-
-
Serhiy Storchaka yazdı
STRINGLIB(find_char) and STRINGLIB(rfind_char) that can be used independedly without special preconditions.
-
- 14 Eki, 2015 3 kayıt (commit)
-
-
Victor Stinner yazdı
-
Victor Stinner yazdı
Issue #25401: Optimize bytes.fromhex() and bytearray.fromhex(): they are now between 2x and 3.5x faster. Changes: * Use a fast-path working on a char* string for ASCII string * Use a slow-path for non-ASCII string * Replace slow hex_digit_to_int() function with a O(1) lookup in _PyLong_DigitValue precomputed table * Use _PyBytesWriter API to handle the buffer * Add unit tests to check the error position in error messages
-
Victor Stinner yazdı
Issue #25399: Don't create temporary bytes objects: modify _PyBytes_Format() to create work directly on bytearray objects. * Rename _PyBytes_Format() to _PyBytes_FormatEx() just in case if something outside CPython uses it * _PyBytes_FormatEx() now uses (char*, Py_ssize_t) for the input string, so bytearray_format() doesn't need tot create a temporary input bytes object * Add use_bytearray parameter to _PyBytes_FormatEx() which is passed to _PyBytesWriter, to create a bytearray buffer instead of a bytes buffer Most formatting operations are now between 2.5 and 5 times faster.
-
- 20 Tem, 2015 1 kayıt (commit)
-
-
Serhiy Storchaka yazdı
for single-byte argument on Linux.
-
- 29 Haz, 2015 1 kayıt (commit)
-
-
Serhiy Storchaka yazdı
object now always allocates place for trailing null byte and it's buffer now is always null-terminated.
-
- 30 May, 2015 2 kayıt (commit)
-
-
Serhiy Storchaka yazdı
PyObject_IsInstance(), PyObject_RichCompareBool() and _PyDict_Contains() to check for and handle errors correctly.
-
Serhiy Storchaka yazdı
-
- 19 May, 2015 1 kayıt (commit)
-
-
Antoine Pitrou yazdı
Issue #23985: Fix a possible buffer overrun when deleting a slice from the front of a bytearray and then appending some other bytes data. Patch by Martin Panter.
-
- 25 Nis, 2015 1 kayıt (commit)
-
-
Gregory P. Smith yazdı
Also updates a few internal implementations of the same thing to use the new built-in code. Contributed by Arnon Yaari.
-
- 18 Nis, 2015 1 kayıt (commit)
-
-
Christian Heimes yazdı
-
- 14 Nis, 2015 1 kayıt (commit)
-
-
Larry Hastings yazdı
-
- 03 Nis, 2015 1 kayıt (commit)
-
-
Serhiy Storchaka yazdı
-
- 25 Mar, 2015 1 kayıt (commit)
-
-
Victor Stinner yazdı
Windows has no memrchr() function. This change is only a workaround, the optimization must be reenabled on other platforms.
-
- 24 Mar, 2015 1 kayıt (commit)
-
-
Serhiy Storchaka yazdı
str.index, str.count, the in operator, str.split, str.partition) with arguments of different kinds (UCS1, UCS2, UCS4).
-
- 03 Şub, 2015 1 kayıt (commit)
-
-
Stefan Krah yazdı
and bytearray_getbuffer(). Both functions now raise BufferError in that case.
-
- 02 Şub, 2015 1 kayıt (commit)
-
-
Serhiy Storchaka yazdı
and PyObject_AsWriteBuffer().
-
- 24 Ock, 2015 1 kayıt (commit)
-
-
Ethan Furman yazdı
-