summaryrefslogtreecommitdiffstats
Commit message (Expand)AuthorAgeFilesLines
* Check error when calling PyUnicode_AppendAndDel()Victor Stinner2011-10-022-5/+7
* PyCodec_ReplaceErrors() uses "C" format instead of "u#" to build resultVictor Stinner2011-10-021-2/+3
* merge from 3.2 - Document message_body arg in HTTPConnection.endheadersSenthil Kumaran2011-10-021-2/+6
|\
| * Document message_body arg in HTTPConnection.endheadersSenthil Kumaran2011-10-021-2/+6
* | Fix ResourceWarnings in the TIPC socket tests.Antoine Pitrou2011-10-021-2/+7
|\ \ | |/
| * Fix ResourceWarnings in the TIPC socket tests.Antoine Pitrou2011-10-021-2/+7
* | merge headsBenjamin Peterson2011-10-021-8/+6
|\ \
| * | Issue #13084: Fix a test_signal failure: the delivery order is only defined forCharles-François Natali2011-10-021-8/+6
* | | remove unused labelBenjamin Peterson2011-10-021-1/+0
|/ /
* | #13076: merge with 3.2.Ezio Melotti2011-10-021-76/+76
|\ \ | |/
| * #13076: fix links to datetime.time and datetime.datetime.Ezio Melotti2011-10-021-76/+76
* | PyUnicode_FindChar() raises a IndexError on invalid indexVictor Stinner2011-10-011-0/+4
* | Optimize _PyUnicode_AsKind() for UCS1->UCS4 and UCS2->UCS4Victor Stinner2011-10-011-25/+43
* | Use Py_UCS1 instead of unsigned char in unicodeobject.hVictor Stinner2011-10-011-2/+2
* | Fix usage of PyUnicode_READY() in PyUnicode_GetLength()Victor Stinner2011-10-011-1/+1
* | PyUnicode_WriteChar() raises IndexError on invalid indexVictor Stinner2011-10-012-8/+24
* | PyUnicode_ReadChar() raises a IndexError if the index in invalidVictor Stinner2011-10-011-14/+11
* | PyUnicode_FromKindAndData() raises a ValueError if the kind is unknownVictor Stinner2011-10-011-1/+1
* | merge #4147: minidom's toprettyxml no longer adds whitespace to text nodes.R David Murray2011-10-014-2/+14
|\ \ | |/
| * #4147: minidom's toprettyxml no longer adds whitespace to text nodes.R David Murray2011-10-014-2/+14
* | Issue #13034: When decoding some SSL certificates, the subjectAltName extensi...Antoine Pitrou2011-10-014-1/+61
|\ \ | |/
| * Issue #13034: When decoding some SSL certificates, the subjectAltName extensi...Antoine Pitrou2011-10-014-1/+61
* | Optimize unicode_subtype_new(): don't encode to wchar_t and decode from wchar_tVictor Stinner2011-10-012-46/+84
* | Add _PyUnicode_UTF8() and _PyUnicode_UTF8_LENGTH() macrosVictor Stinner2011-10-011-41/+54
* | Backout of changeset 228fd2bd83a5 by Nadeem Vawda in branch 'default':Antoine Pitrou2011-10-011-1/+1
* | Issue 13085: Fix some memory leaks. Patch by Stefan Krah.Martin v. Löwis2011-10-012-11/+20
* | merge headsBenjamin Peterson2011-10-012-3/+8
|\ \
| * | PyUnicode_Substring() now accepts end bigger than string lengthVictor Stinner2011-10-011-3/+6
| * | _PyUnicode_AsKind() is *not* part of the stable ABIVictor Stinner2011-10-011-0/+2
* | | remove reference to non-existent fileBenjamin Peterson2011-10-011-2/+1
|/ /
* | remove "fast-path" for (i)adding stringsBenjamin Peterson2011-10-012-8/+14
* | Ooops, avoid a division by zero in unicode_repeat()Victor Stinner2011-10-011-1/+1
* | PyUnicode_FromObject() ensures that its output is a ready stringVictor Stinner2011-10-011-0/+2
* | I want a super fast 'a' * n!Victor Stinner2011-10-011-15/+10
* | PyUnicode_CHARACTER_SIZE(): add a reference to PyUnicode_KIND_SIZE()Victor Stinner2011-10-011-2/+5
* | Fix usage of PyUnicode_READY in unicodeobject.cVictor Stinner2011-10-011-19/+12
* | Remove private substring() function, reuse public PyUnicode_Substring()Victor Stinner2011-09-301-62/+22
* | Optimize PyUnicode_Copy(): don't recompute maximum characterVictor Stinner2011-09-301-3/+28
* | Remove commented code: str+=str is no more super-optimizedVictor Stinner2011-09-301-112/+6
* | PyUnicode_FromObject() reuses PyUnicode_Copy()Victor Stinner2011-09-301-4/+2
* | pyexat uses the new Unicode APIVictor Stinner2011-09-301-5/+7
* | Fix ResourceWarnings in makeunicodedata.py.Ezio Melotti2011-09-301-81/+88
* | Add PyUnicode_Copy() function, include it to the public APIVictor Stinner2011-09-303-21/+27
* | PyUnicode_CopyCharacters() uses exceptions instead of assertionsVictor Stinner2011-09-301-2/+4
* | Fix a compiler warningVictor Stinner2011-09-291-1/+1
* | Fix array.array('u') constructorVictor Stinner2011-09-291-6/+12
* | posix module catches PyUnicode_AsUnicode() failureVictor Stinner2011-09-291-96/+167
* | array module uses the new Unicode APIVictor Stinner2011-09-292-35/+36
* | array module stores the typecode in a char, instead of Py_UNICODEVictor Stinner2011-09-291-19/+16
* | raw_unicode_escape() uses the new Unicode APIVictor Stinner2011-09-291-46/+21