summaryrefslogtreecommitdiffstats
Commit message (Expand)AuthorAgeFilesLines
* Create _PyUnicode_READY_REPLACE() to reuse singletonVictor Stinner2011-10-031-22/+72
* Fix resize_compact() and resize_inplace(); reenable full resize optimizationsVictor Stinner2011-10-031-10/+21
* resize_inplace() has been fixed: reenable this optimizationVictor Stinner2011-10-031-3/+0
* _PyUnicode_Dump() indicates if wstr and/or utf8 are sharedVictor Stinner2011-10-031-15/+16
* Fix resize_inplace(): update shared utf8 pointerVictor Stinner2011-10-031-1/+4
* Disable unicode_resize() optimization on Windows (16-bit wchar_t)Victor Stinner2011-10-031-0/+4
* _PyUnicode_Ready() for 16-bit wchar_tVictor Stinner2011-10-031-0/+2
* Fix compilation error on WindowsVictor Stinner2011-10-031-2/+3
* ceval.c: restore str+=str optimizationVictor Stinner2011-10-021-3/+73
* Use PyUnicode_WCHAR_KIND to check if a string is a wstr stringVictor Stinner2011-10-031-9/+11
* Add _PyUnicode_CheckConsistency() macro to help debuggingVictor Stinner2011-10-032-37/+144
* In release mode, PyUnicode_InternInPlace() does nothing if the input is NULL orVictor Stinner2011-10-031-3/+7
* PyUnicode_Append() now works in-place when it's possibleVictor Stinner2011-10-031-10/+71
* Rewrite PyUnicode_Resize()Victor Stinner2011-10-031-95/+207
* Add _PyUnicode_HAS_UTF8_MEMORY() macroVictor Stinner2011-10-021-6/+11
* PyUnicode_READ_CHAR() ensures that the string is readyVictor Stinner2011-10-021-8/+10
* Write _PyUnicode_Dump() to help debuggingVictor Stinner2011-10-031-0/+23
* PyUnicode_CopyCharacters() fails when copying latin1 into asciiVictor Stinner2011-10-021-7/+56
* unicode_convert_wchar_to_ucs4() cannot failVictor Stinner2011-10-021-10/+4
* Add _PyUnicode_DATA_ANY(op) private macroVictor Stinner2011-10-021-17/+17
* unicode_empty and unicode_latin1 are PyObject* objects, not PyUnicodeObject*Victor Stinner2011-10-021-15/+15
* 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