- 13 Oct, 2011 2 commits
-
-
Nadeem Vawda authored
Also fix the bz2 module, which suffered from the same problem.
-
Nadeem Vawda authored
Also fix the bz2 module, whose classes used the same algorithm.
-
- 12 Oct, 2011 25 commits
-
-
Victor Stinner authored
-
Victor Stinner authored
-
Victor Stinner authored
Use PyUnicode_IS_ASCII instead of PyUnicode_IS_COMPACT_ASCII, so the following test can be removed: PyUnicode_DATA(op) == (((PyCompactUnicodeObject *)(op))->utf8)
-
Victor Stinner authored
-
Antoine Pitrou authored
-
Victor Stinner authored
Add also a special case if the result is an empty string.
-
Victor Stinner authored
-
Victor Stinner authored
Thanks to the PEP 3151, select.error (which is just an alias to OSError) has now an error attribute.
-
Victor Stinner authored
-
Antoine Pitrou authored
-
Antoine Pitrou authored
"except" works properly.
-
Antoine Pitrou authored
-
Antoine Pitrou authored
-
Antoine Pitrou authored
-
Antoine Pitrou authored
-
Antoine Pitrou authored
-
Antoine Pitrou authored
-
Antoine Pitrou authored
-
Antoine Pitrou authored
-
Antoine Pitrou authored
-
Antoine Pitrou authored
-
Antoine Pitrou authored
-
Antoine Pitrou authored
More editing is probably desirable.
-
Antoine Pitrou authored
-
Antoine Pitrou authored
-
- 11 Oct, 2011 13 commits
-
-
Victor Stinner authored
If maxchar == PyUnicode_MAX_CHAR_VALUE(unicode), we do an useless copy.
-
Antoine Pitrou authored
-
Victor Stinner authored
-
Victor Stinner authored
-
Victor Stinner authored
* If needle is 0, try (p[0] >> 16) & 0xff for UCS4 * Disable fastsearch_memchr_1char() if needle is zero for UCS2 and UCS4
-
Victor Stinner authored
Truncate the buffer size to PY_SSIZE_T_MAX.
-
Antoine Pitrou authored
-
Antoine Pitrou authored
-
Victor Stinner authored
Use Py_off_t type (64 bits) instead of off_t (32 bits).
-
Antoine Pitrou authored
-
Victor Stinner authored
-
Victor Stinner authored
-
Victor Stinner authored
-