]> granicus.if.org Git - python/shortlog
python
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
2011-09-28 Victor StinnerUse the new Py_ARRAY_LENGTH macro
2011-09-28 Victor StinnerFix 'c' format of PyUnicode_Format()
2011-09-28 Victor StinnerOops, fix my previous commit: unicode => to
2011-09-28 Victor StinnerPyUnicode_CopyCharacters() marks the string as dirty...
2011-09-28 Victor StinnerPyUnicode_CopyCharacters() fails if 'to' has more than...
2011-09-28 Ezio MelottiFix whitespace.
2011-09-28 Ezio MelottiClean up a few tabs that went in with PEP393.
2011-09-28 Ezio Melotti#13054: sys.maxunicode is now always 0x10FFFF.
2011-09-28 Victor StinnerCheck size of wchar_t using the preprocessor
2011-09-28 Victor StinnerPyUnicode_CopyCharacters() initializes overflow
2011-09-28 Victor StinnerMark PyUnicode_FromUCS[124] as private
2011-09-28 Victor StinnerOops, fix Py_MIN/Py_MAX case
2011-09-28 Victor StinnerMark _PyUnicode_FindMaxCharAndNumSurrogatePairs() as...
2011-09-28 Victor Stinnerfill_number() and format_string_internal() check for...
2011-09-28 Victor Stinnerfill_number() ensures that the 'digits' string is ready
2011-09-28 Victor Stinnerfill_char() can now propagate an error
2011-09-28 Victor StinnerStrip trailing spaces in unicodeobject.[ch]
2011-09-28 Victor StinnerCheck for PyUnicode_CopyCharacters() failure
2011-09-28 Victor StinnerPyUnicode_CopyCharacters() checks for buffer and charac...
2011-09-28 Victor StinnerMark PyUnicode_CONVERT_BYTES as private
2011-09-28 Georg BrandlAdd versionadded directive to new API function.
2011-09-28 Georg BrandlRename new macros to conform to naming rules (function...
2011-09-28 Victor StinnerSet Py_UNICODE_REPLACEMENT_CHARACTER type to Py_UCS4...
2011-09-28 Benjamin Petersonmerge heads
2011-09-28 Benjamin Petersonthis isn't fixed on windows yet...
2011-09-28 Ezio Melotti#13012: use splitlines(keepends=True/False) instead...
2011-09-28 Benjamin Petersonthis test works as expected now
2011-09-28 Benjamin Petersonrevert unintended change
2011-09-28 Benjamin Petersondon't check that the first character is XID_Continue
2011-09-28 Victor Stinnertest_ctypes: Windows is no more a special case
2011-09-28 Martin v. LöwisFix struct sizes. Drop -1, since the resulting string...
2011-09-28 Martin v. LöwisUse compile() instead of eval().
2011-09-28 Martin v. LöwisUse eval instead of codecs.lookup to trigger UTF-8...
2011-09-28 Martin v. LöwisACKS for PEP 393.
2011-09-28 Martin v. LöwisUpdate for PEP 393.
2011-09-28 Martin v. LöwisImplement PEP 393.
2011-09-28 Meador IngeIssue #13013: ctypes: Fix a reference leak in PyCArrayT...
2011-09-28 Meador IngeIssue #13013: ctypes: Fix a reference leak in PyCArrayT...
2011-09-27 Georg BrandlFix markup.
2011-09-25 Martin v. Löwismerged
2011-09-25 Martin v. LöwisDepend setobject.o and dictobject.o on stringlib/eq.h.
2011-09-25 Mark DickinsonIssue #1621: Fix undefined behaviour from signed overfl...
2011-09-25 Mark DickinsonReturn +-Py_HUGE_VAL for tgamma(+-0) instead of risking...
2011-09-24 Mark DickinsonIssue #1621: Fix undefined behaviour from signed overfl...
next