- 02 Eki, 2011 10 kayıt (commit)
-
-
Victor Stinner yazdı
-
Senthil Kumaran yazdı
-
Senthil Kumaran yazdı
-
Antoine Pitrou yazdı
-
Antoine Pitrou yazdı
-
Benjamin Peterson yazdı
-
Benjamin Peterson yazdı
-
Charles-François Natali yazdı
real-time signals.
-
Ezio Melotti yazdı
-
Ezio Melotti yazdı
-
- 01 Eki, 2011 25 kayıt (commit)
-
-
Victor Stinner yazdı
-
Victor Stinner yazdı
* Ensure that the input string is ready * Raise a ValueError instead of of a fatal error
-
Victor Stinner yazdı
-
Victor Stinner yazdı
-
Victor Stinner yazdı
PyUnicode_WriteChar() raises also a ValueError if the string has more than 1 reference.
-
Victor Stinner yazdı
unicode_getitem() reuses PyUnicode_ReadChar()
-
Victor Stinner yazdı
-
R David Murray yazdı
-
R David Murray yazdı
Patch by Dan Kenigsberg.
-
Antoine Pitrou yazdı
Issue #13034: When decoding some SSL certificates, the subjectAltName extension could be unreported.
-
Antoine Pitrou yazdı
Issue #13034: When decoding some SSL certificates, the subjectAltName extension could be unreported.
-
Victor Stinner yazdı
Rewrite unicode_subtype_new(): allocate directly the right type.
-
Victor Stinner yazdı
* Rename existing _PyUnicode_UTF8() macro to PyUnicode_UTF8() * Rename existing _PyUnicode_UTF8_LENGTH() macro to PyUnicode_UTF8_LENGTH() * PyUnicode_UTF8() and PyUnicode_UTF8_LENGTH() are more strict
-
Antoine Pitrou yazdı
Issue #12804: Prevent "make test" from using network resources.
-
Martin v. Löwis yazdı
-
Benjamin Peterson yazdı
-
Benjamin Peterson yazdı
-
Victor Stinner yazdı
Fix also a bug: call PyUnicode_READY() before reading string length.
-
Victor Stinner yazdı
-
Benjamin Peterson yazdı
These were just an artifact of the old unicode concatenation hack and likely just penalized other kinds of adding. Also, this fixes __(i)add__ on string subclasses.
-
Victor Stinner yazdı
-
Victor Stinner yazdı
-
Victor Stinner yazdı
* Optimize unicode_repeat() for a special case with memset() * Simplify integer overflow checking; remove the second check because PyUnicode_New() already does it and uses a smaller limit (Py_ssize_t vs size_t)
-
Victor Stinner yazdı
-
Victor Stinner yazdı
-
- 30 Eyl, 2011 5 kayıt (commit)
-
-
Victor Stinner yazdı
* PyUnicode_Substring() now fails if start or end is invalid * PyUnicode_Substring() reuses PyUnicode_Copy() for non-exact strings
-
Victor Stinner yazdı
-
Victor Stinner yazdı
-
Victor Stinner yazdı
* PyUnicode_Copy() is faster than substring() * Fix also a compiler warning
-
Victor Stinner yazdı
-