- 21 Kas, 2011 21 kayıt (commit)
-
-
Antoine Pitrou yazdı
-
Antoine Pitrou yazdı
This almost catches up with pre-PEP 393 performance, when decoding needed only one pass.
-
Antoine Pitrou yazdı
raised when the wrapped raw file is non-blocking and the write would block. Previous code assumed that the raw write() would raise BlockingIOError, but RawIOBase.write() is defined to returned None when the call would block. Patch by sbt.
-
Antoine Pitrou yazdı
raised when the wrapped raw file is non-blocking and the write would block. Previous code assumed that the raw write() would raise BlockingIOError, but RawIOBase.write() is defined to returned None when the call would block. Patch by sbt.
-
Victor Stinner yazdı
-
Victor Stinner yazdı
-
Victor Stinner yazdı
Dump the wchar_t that we are going to decode and dump the locale
-
Victor Stinner yazdı
character is bigger than U+10FFFF and locale.localeconv() dumps the string before decoding it. Temporary hack to debug the issue #13441.
-
Victor Stinner yazdı
-
Victor Stinner yazdı
-
Victor Stinner yazdı
-
Victor Stinner yazdı
-
Victor Stinner yazdı
-
Victor Stinner yazdı
And PyUnicode_GetSize() => PyUnicode_GetLength()
-
Victor Stinner yazdı
using an assertion
-
Victor Stinner yazdı
-
Victor Stinner yazdı
-
Victor Stinner yazdı
PyUnicode_GET_SIZE() => PyUnicode_GET_LENGTH()
-
Victor Stinner yazdı
-
Victor Stinner yazdı
The index is a character index, not a index in a Py_UNICODE* string.
-
Victor Stinner yazdı
-
- 20 Kas, 2011 19 kayıt (commit)
-
-
Victor Stinner yazdı
Patch written by Arfrever Frehtes Taifersar Arahesis.
-
Victor Stinner yazdı
Patch written by Arfrever Frehtes Taifersar Arahesis.
-
Victor Stinner yazdı
The index is a character index, not a index in a Py_UNICODE* string.
-
Victor Stinner yazdı
and check the string consistency. _PyUnicode_CheckConsistency() doesn't check the hash anymore. It should be possible to call this function even if hash(str) was already called.
-
Victor Stinner yazdı
the deprecate Py_UNICODE type
-
Victor Stinner yazdı
-
Victor Stinner yazdı
-
Victor Stinner yazdı
instead of calling the deprecated PyUnicode_EncodeUTF32() function
-
Victor Stinner yazdı
not only its minimum value
-
Victor Stinner yazdı
-
Victor Stinner yazdı
-
Victor Stinner yazdı
-
Victor Stinner yazdı
-
Victor Stinner yazdı
-
Victor Stinner yazdı
-
Victor Stinner yazdı
-
Victor Stinner yazdı
PyUnicode_AsUnicodeAndSize()
-
Victor Stinner yazdı
-
Éric Araujo yazdı
-