- 02 Oct, 2011 10 commits
-
-
Victor Stinner authored
-
Senthil Kumaran authored
-
Senthil Kumaran authored
-
Antoine Pitrou authored
-
Antoine Pitrou authored
-
Benjamin Peterson authored
-
Benjamin Peterson authored
-
Charles-François Natali authored
real-time signals.
-
Ezio Melotti authored
-
Ezio Melotti authored
-
- 01 Oct, 2011 25 commits
-
-
Victor Stinner authored
-
Victor Stinner authored
* Ensure that the input string is ready * Raise a ValueError instead of of a fatal error
-
Victor Stinner authored
-
Victor Stinner authored
-
Victor Stinner authored
PyUnicode_WriteChar() raises also a ValueError if the string has more than 1 reference.
-
Victor Stinner authored
unicode_getitem() reuses PyUnicode_ReadChar()
-
Victor Stinner authored
-
R David Murray authored
-
R David Murray authored
Patch by Dan Kenigsberg.
-
Antoine Pitrou authored
Issue #13034: When decoding some SSL certificates, the subjectAltName extension could be unreported.
-
Antoine Pitrou authored
Issue #13034: When decoding some SSL certificates, the subjectAltName extension could be unreported.
-
Victor Stinner authored
Rewrite unicode_subtype_new(): allocate directly the right type.
-
Victor Stinner authored
* 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 authored
Issue #12804: Prevent "make test" from using network resources.
-
Martin v. Löwis authored
-
Benjamin Peterson authored
-
Benjamin Peterson authored
-
Victor Stinner authored
Fix also a bug: call PyUnicode_READY() before reading string length.
-
Victor Stinner authored
-
Benjamin Peterson authored
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 authored
-
Victor Stinner authored
-
Victor Stinner authored
* 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 authored
-
Victor Stinner authored
-
- 30 Sep, 2011 5 commits
-
-
Victor Stinner authored
* PyUnicode_Substring() now fails if start or end is invalid * PyUnicode_Substring() reuses PyUnicode_Copy() for non-exact strings
-
Victor Stinner authored
-
Victor Stinner authored
-
Victor Stinner authored
* PyUnicode_Copy() is faster than substring() * Fix also a compiler warning
-
Victor Stinner authored
-