]> granicus.if.org Git - python/shortlog
python
2011-10-03 Victor Stinnerunicode_subtype_new() copies also the ascii flag
2011-10-03 Victor Stinnerunicode_kind_name() doesn't check consistency anymore
2011-10-03 Victor StinnerPyUnicode_Ready() now sets ascii=1 if maxchar < 128
2011-10-03 Victor StinnerCreate _PyUnicode_READY_REPLACE() to reuse singleton
2011-10-03 Victor StinnerFix resize_compact() and resize_inplace(); reenable...
2011-10-03 Victor Stinnerresize_inplace() has been fixed: reenable this optimization
2011-10-03 Victor Stinner_PyUnicode_Dump() indicates if wstr and/or utf8 are...
2011-10-03 Victor StinnerFix resize_inplace(): update shared utf8 pointer
2011-10-03 Victor StinnerDisable unicode_resize() optimization on Windows (16...
2011-10-03 Victor Stinner_PyUnicode_Ready() for 16-bit wchar_t
2011-10-03 Victor StinnerFix compilation error on Windows
2011-10-02 Victor Stinnerceval.c: restore str+=str optimization
2011-10-03 Victor StinnerUse PyUnicode_WCHAR_KIND to check if a string is a...
2011-10-03 Victor StinnerAdd _PyUnicode_CheckConsistency() macro to help debugging
2011-10-03 Victor StinnerIn release mode, PyUnicode_InternInPlace() does nothing...
2011-10-03 Victor StinnerPyUnicode_Append() now works in-place when it's possible
2011-10-03 Victor StinnerRewrite PyUnicode_Resize()
2011-10-02 Victor StinnerAdd _PyUnicode_HAS_UTF8_MEMORY() macro
2011-10-02 Victor StinnerPyUnicode_READ_CHAR() ensures that the string is ready
2011-10-03 Victor StinnerWrite _PyUnicode_Dump() to help debugging
2011-10-02 Victor StinnerPyUnicode_CopyCharacters() fails when copying latin1...
2011-10-02 Victor Stinnerunicode_convert_wchar_to_ucs4() cannot fail
2011-10-02 Victor StinnerAdd _PyUnicode_DATA_ANY(op) private macro
2011-10-02 Victor Stinnerunicode_empty and unicode_latin1 are PyObject* objects...
2011-10-02 Victor StinnerCheck error when calling PyUnicode_AppendAndDel()
2011-10-02 Victor StinnerPyCodec_ReplaceErrors() uses "C" format instead of...
2011-10-02 Senthil Kumaranmerge from 3.2 - Document message_body arg in HTTPConn...
2011-10-02 Senthil KumaranDocument message_body arg in HTTPConnection.endheaders
2011-10-02 Antoine PitrouFix ResourceWarnings in the TIPC socket tests.
2011-10-02 Antoine PitrouFix ResourceWarnings in the TIPC socket tests.
2011-10-02 Benjamin Petersonmerge heads
2011-10-02 Benjamin Petersonremove unused label
2011-10-02 Charles-François... Issue #13084: Fix a test_signal failure: the delivery...
2011-10-02 Ezio Melotti#13076: merge with 3.2.
2011-10-02 Ezio Melotti#13076: fix links to datetime.time and datetime.datetime.
2011-10-01 Victor StinnerPyUnicode_FindChar() raises a IndexError on invalid...
2011-10-01 Victor StinnerOptimize _PyUnicode_AsKind() for UCS1->UCS4 and UCS2...
2011-10-01 Victor StinnerUse Py_UCS1 instead of unsigned char in unicodeobject.h
2011-10-01 Victor StinnerFix usage of PyUnicode_READY() in PyUnicode_GetLength()
2011-10-01 Victor StinnerPyUnicode_WriteChar() raises IndexError on invalid...
2011-10-01 Victor StinnerPyUnicode_ReadChar() raises a IndexError if the index...
2011-10-01 Victor StinnerPyUnicode_FromKindAndData() raises a ValueError if...
2011-10-01 R David Murraymerge #4147: minidom's toprettyxml no longer adds white...
2011-10-01 R David Murray#4147: minidom's toprettyxml no longer adds whitespace...
2011-10-01 Antoine PitrouIssue #13034: When decoding some SSL certificates,...
2011-10-01 Antoine PitrouIssue #13034: When decoding some SSL certificates,...
2011-10-01 Victor StinnerOptimize unicode_subtype_new(): don't encode to wchar_t...
2011-10-01 Victor StinnerAdd _PyUnicode_UTF8() and _PyUnicode_UTF8_LENGTH()...
2011-10-01 Antoine PitrouBackout of changeset 228fd2bd83a5 by Nadeem Vawda in...
2011-10-01 Martin v. LöwisIssue 13085: Fix some memory leaks. Patch by Stefan...
2011-10-01 Benjamin Petersonmerge heads
2011-10-01 Benjamin Petersonremove reference to non-existent file
2011-10-01 Victor StinnerPyUnicode_Substring() now accepts end bigger than strin...
2011-10-01 Victor Stinner_PyUnicode_AsKind() is *not* part of the stable ABI
2011-10-01 Benjamin Petersonremove "fast-path" for (i)adding strings
2011-10-01 Victor StinnerOoops, avoid a division by zero in unicode_repeat()
2011-10-01 Victor StinnerPyUnicode_FromObject() ensures that its output is a...
2011-10-01 Victor StinnerI want a super fast 'a' * n!
2011-10-01 Victor StinnerPyUnicode_CHARACTER_SIZE(): add a reference to PyUnicod...
2011-10-01 Victor StinnerFix usage of PyUnicode_READY in unicodeobject.c
2011-09-30 Victor StinnerRemove private substring() function, reuse public PyUni...
2011-09-30 Victor StinnerOptimize PyUnicode_Copy(): don't recompute maximum...
2011-09-30 Victor StinnerRemove commented code: str+=str is no more super-optimized
2011-09-30 Victor StinnerPyUnicode_FromObject() reuses PyUnicode_Copy()
2011-09-30 Victor Stinnerpyexat uses the new Unicode API
2011-09-30 Ezio MelottiFix ResourceWarnings in makeunicodedata.py.
2011-09-30 Victor StinnerAdd PyUnicode_Copy() function, include it to the public API
2011-09-30 Victor StinnerPyUnicode_CopyCharacters() uses exceptions instead...
2011-09-29 Victor StinnerFix a compiler warning
2011-09-29 Victor StinnerFix array.array('u') constructor
2011-09-29 Victor Stinnerposix module catches PyUnicode_AsUnicode() failure
2011-09-29 Victor Stinnerarray module uses the new Unicode API
2011-09-29 Victor Stinnerarray module stores the typecode in a char, instead...
2011-09-29 Victor Stinnerraw_unicode_escape() uses the new Unicode API
2011-09-29 Victor StinnerStrip trailing spaces of _pickle.c
2011-09-29 Victor StinnerPyLocale_strxfrm() uses the new Unicode API
2011-09-29 Victor Stinnerfileio_init() checks for failure on conversion to Py_UN...
2011-09-29 Victor StinnerFix test_codeccallbacks for Windows: check size of...
2011-09-29 Victor StinnerFix test_codecs for Windows: check size of wchar_t...
2011-09-29 Charles-François... Merge.
2011-09-29 Charles-François... Issue #13058: ossaudiodev: fix a file descriptor leak...
2011-09-29 Charles-François... Issue #13058: ossaudiodev: fix a file descriptor leak...
2011-09-29 Victor Stinner_PyUnicode_Ready() cannot be used on ready strings...
2011-09-29 Victor StinnerMove _PyUnicode_UTF8() and _PyUnicode_UTF8_LENGTH(...
2011-09-29 Victor StinnerAdd a note in PyUnicode_CopyCharacters() doc: it doesn...
2011-09-29 Martin v. LöwisRe-enable test.
2011-09-29 Martin v. LöwisPort normalization to new API.
2011-09-29 Victor StinnerRename Py_BUILD_ASSERT to Py_BUILD_ASSERT_EXPR
2011-09-29 Victor Stinnerpymacro.h: Inline _Py_ARRAY_LENGTH_CHECK() and add...
2011-09-29 Ezio MelottiMerge heads.
2011-09-29 Ezio MelottiUpdate and reorganize the whatsnew entry for PEP 393.
2011-09-29 Victor StinnerFix hex_digit_to_int() prototype: expect Py_UCS4, not...
2011-09-29 Victor Stinnermodsupport.c reuses Py_UNICODE_strlen()
2011-09-29 Ezio MelottiRemove now useless redefinition of chr/ord for narrow...
2011-09-29 Victor Stinner_io.textio: fix character type, use Py_UCS4 instead...
2011-09-29 Victor Stinner_sre: don't use Py_UNICODE anymore
2011-09-29 Victor StinnerComplete What's New in 3.3 about PEP 393
2011-09-29 Ezio MelottiMove UCS4-specific tests with the "normal" tests.
2011-09-28 Victor StinnerEnhance Py_ARRAY_LENGTH(): fail at build time if the...
2011-09-28 Victor StinnerMove code related to compile from Python.h to compile.h
next