2011-10-01 |
Antoine Pitrou | Issue #13034: When decoding some SSL certificates,... |
commit | commitdiff | tree | snapshot |
2011-10-01 |
Antoine Pitrou | Issue #13034: When decoding some SSL certificates,... |
commit | commitdiff | tree | snapshot |
2011-10-01 |
Victor Stinner | Optimize unicode_subtype_new(): don't encode to wchar_t... |
commit | commitdiff | tree | snapshot |
2011-10-01 |
Victor Stinner | Add _PyUnicode_UTF8() and _PyUnicode_UTF8_LENGTH()... |
commit | commitdiff | tree | snapshot |
2011-10-01 |
Antoine Pitrou | Backout of changeset 228fd2bd83a5 by Nadeem Vawda in... |
commit | commitdiff | tree | snapshot |
2011-10-01 |
Martin v. Löwis | Issue 13085: Fix some memory leaks. Patch by Stefan... |
commit | commitdiff | tree | snapshot |
2011-10-01 |
Benjamin Peterson | merge heads |
commit | commitdiff | tree | snapshot |
2011-10-01 |
Benjamin Peterson | remove reference to non-existent file |
commit | commitdiff | tree | snapshot |
2011-10-01 |
Victor Stinner | PyUnicode_Substring() now accepts end bigger than strin... |
commit | commitdiff | tree | snapshot |
2011-10-01 |
Victor Stinner | _PyUnicode_AsKind() is *not* part of the stable ABI |
commit | commitdiff | tree | snapshot |
2011-10-01 |
Benjamin Peterson | remove "fast-path" for (i)adding strings |
commit | commitdiff | tree | snapshot |
2011-10-01 |
Victor Stinner | Ooops, avoid a division by zero in unicode_repeat() |
commit | commitdiff | tree | snapshot |
2011-10-01 |
Victor Stinner | PyUnicode_FromObject() ensures that its output is a... |
commit | commitdiff | tree | snapshot |
2011-10-01 |
Victor Stinner | I want a super fast 'a' * n! |
commit | commitdiff | tree | snapshot |
2011-10-01 |
Victor Stinner | PyUnicode_CHARACTER_SIZE(): add a reference to PyUnicod... |
commit | commitdiff | tree | snapshot |
2011-10-01 |
Victor Stinner | Fix usage of PyUnicode_READY in unicodeobject.c |
commit | commitdiff | tree | snapshot |
2011-09-30 |
Victor Stinner | Remove private substring() function, reuse public PyUni... |
commit | commitdiff | tree | snapshot |
2011-09-30 |
Victor Stinner | Optimize PyUnicode_Copy(): don't recompute maximum... |
commit | commitdiff | tree | snapshot |
2011-09-30 |
Victor Stinner | Remove commented code: str+=str is no more super-optimized |
commit | commitdiff | tree | snapshot |
2011-09-30 |
Victor Stinner | PyUnicode_FromObject() reuses PyUnicode_Copy() |
commit | commitdiff | tree | snapshot |
2011-09-30 |
Victor Stinner | pyexat uses the new Unicode API |
commit | commitdiff | tree | snapshot |
2011-09-30 |
Ezio Melotti | Fix ResourceWarnings in makeunicodedata.py. |
commit | commitdiff | tree | snapshot |
2011-09-30 |
Victor Stinner | Add PyUnicode_Copy() function, include it to the public API |
commit | commitdiff | tree | snapshot |
2011-09-30 |
Victor Stinner | PyUnicode_CopyCharacters() uses exceptions instead... |
commit | commitdiff | tree | snapshot |
2011-09-29 |
Victor Stinner | Fix a compiler warning |
commit | commitdiff | tree | snapshot |
2011-09-29 |
Victor Stinner | Fix array.array('u') constructor |
commit | commitdiff | tree | snapshot |
2011-09-29 |
Victor Stinner | posix module catches PyUnicode_AsUnicode() failure |
commit | commitdiff | tree | snapshot |
2011-09-29 |
Victor Stinner | array module uses the new Unicode API |
commit | commitdiff | tree | snapshot |
2011-09-29 |
Victor Stinner | array module stores the typecode in a char, instead... |
commit | commitdiff | tree | snapshot |
2011-09-29 |
Victor Stinner | raw_unicode_escape() uses the new Unicode API |
commit | commitdiff | tree | snapshot |
2011-09-29 |
Victor Stinner | Strip trailing spaces of _pickle.c |
commit | commitdiff | tree | snapshot |
2011-09-29 |
Victor Stinner | PyLocale_strxfrm() uses the new Unicode API |
commit | commitdiff | tree | snapshot |
2011-09-29 |
Victor Stinner | fileio_init() checks for failure on conversion to Py_UN... |
commit | commitdiff | tree | snapshot |
2011-09-29 |
Victor Stinner | Fix test_codeccallbacks for Windows: check size of... |
commit | commitdiff | tree | snapshot |
2011-09-29 |
Victor Stinner | Fix test_codecs for Windows: check size of wchar_t... |
commit | commitdiff | tree | snapshot |
2011-09-29 |
Charles-François... | Merge. |
commit | commitdiff | tree | snapshot |
2011-09-29 |
Charles-François... | Issue #13058: ossaudiodev: fix a file descriptor leak... |
commit | commitdiff | tree | snapshot |
2011-09-29 |
Charles-François... | Issue #13058: ossaudiodev: fix a file descriptor leak... |
commit | commitdiff | tree | snapshot |
2011-09-29 |
Victor Stinner | _PyUnicode_Ready() cannot be used on ready strings... |
commit | commitdiff | tree | snapshot |
2011-09-29 |
Victor Stinner | Move _PyUnicode_UTF8() and _PyUnicode_UTF8_LENGTH(... |
commit | commitdiff | tree | snapshot |
2011-09-29 |
Victor Stinner | Add a note in PyUnicode_CopyCharacters() doc: it doesn... |
commit | commitdiff | tree | snapshot |
2011-09-29 |
Martin v. Löwis | Re-enable test. |
commit | commitdiff | tree | snapshot |
2011-09-29 |
Martin v. Löwis | Port normalization to new API. |
commit | commitdiff | tree | snapshot |
2011-09-29 |
Victor Stinner | Rename Py_BUILD_ASSERT to Py_BUILD_ASSERT_EXPR |
commit | commitdiff | tree | snapshot |
2011-09-29 |
Victor Stinner | pymacro.h: Inline _Py_ARRAY_LENGTH_CHECK() and add... |
commit | commitdiff | tree | snapshot |
2011-09-29 |
Ezio Melotti | Merge heads. |
commit | commitdiff | tree | snapshot |
2011-09-29 |
Ezio Melotti | Update and reorganize the whatsnew entry for PEP 393. |
commit | commitdiff | tree | snapshot |
2011-09-29 |
Victor Stinner | Fix hex_digit_to_int() prototype: expect Py_UCS4, not... |
commit | commitdiff | tree | snapshot |
2011-09-29 |
Victor Stinner | modsupport.c reuses Py_UNICODE_strlen() |
commit | commitdiff | tree | snapshot |
2011-09-29 |
Ezio Melotti | Remove now useless redefinition of chr/ord for narrow... |
commit | commitdiff | tree | snapshot |
2011-09-29 |
Victor Stinner | _io.textio: fix character type, use Py_UCS4 instead... |
commit | commitdiff | tree | snapshot |
2011-09-29 |
Victor Stinner | _sre: don't use Py_UNICODE anymore |
commit | commitdiff | tree | snapshot |
2011-09-29 |
Victor Stinner | Complete What's New in 3.3 about PEP 393 |
commit | commitdiff | tree | snapshot |
2011-09-29 |
Ezio Melotti | Move UCS4-specific tests with the "normal" tests. |
commit | commitdiff | tree | snapshot |
2011-09-28 |
Victor Stinner | Enhance Py_ARRAY_LENGTH(): fail at build time if the... |
commit | commitdiff | tree | snapshot |
2011-09-28 |
Victor Stinner | Move code related to compile from Python.h to compile.h |
commit | commitdiff | tree | snapshot |
2011-09-28 |
Victor Stinner | Use the new Py_ARRAY_LENGTH macro |
commit | commitdiff | tree | snapshot |
2011-09-28 |
Victor Stinner | Fix 'c' format of PyUnicode_Format() |
commit | commitdiff | tree | snapshot |
2011-09-28 |
Victor Stinner | Oops, fix my previous commit: unicode => to |
commit | commitdiff | tree | snapshot |
2011-09-28 |
Victor Stinner | PyUnicode_CopyCharacters() marks the string as dirty... |
commit | commitdiff | tree | snapshot |
2011-09-28 |
Victor Stinner | PyUnicode_CopyCharacters() fails if 'to' has more than... |
commit | commitdiff | tree | snapshot |
2011-09-28 |
Ezio Melotti | Fix whitespace. |
commit | commitdiff | tree | snapshot |
2011-09-28 |
Ezio Melotti | Clean up a few tabs that went in with PEP393. |
commit | commitdiff | tree | snapshot |
2011-09-28 |
Ezio Melotti | #13054: sys.maxunicode is now always 0x10FFFF. |
commit | commitdiff | tree | snapshot |
2011-09-28 |
Victor Stinner | Check size of wchar_t using the preprocessor |
commit | commitdiff | tree | snapshot |
2011-09-28 |
Victor Stinner | PyUnicode_CopyCharacters() initializes overflow |
commit | commitdiff | tree | snapshot |
2011-09-28 |
Victor Stinner | Mark PyUnicode_FromUCS[124] as private |
commit | commitdiff | tree | snapshot |
2011-09-28 |
Victor Stinner | Oops, fix Py_MIN/Py_MAX case |
commit | commitdiff | tree | snapshot |
2011-09-28 |
Victor Stinner | Mark _PyUnicode_FindMaxCharAndNumSurrogatePairs() as... |
commit | commitdiff | tree | snapshot |
2011-09-28 |
Victor Stinner | fill_number() and format_string_internal() check for... |
commit | commitdiff | tree | snapshot |
2011-09-28 |
Victor Stinner | fill_number() ensures that the 'digits' string is ready |
commit | commitdiff | tree | snapshot |
2011-09-28 |
Victor Stinner | fill_char() can now propagate an error |
commit | commitdiff | tree | snapshot |
2011-09-28 |
Victor Stinner | Strip trailing spaces in unicodeobject.[ch] |
commit | commitdiff | tree | snapshot |
2011-09-28 |
Victor Stinner | Check for PyUnicode_CopyCharacters() failure |
commit | commitdiff | tree | snapshot |
2011-09-28 |
Victor Stinner | PyUnicode_CopyCharacters() checks for buffer and charac... |
commit | commitdiff | tree | snapshot |
2011-09-28 |
Victor Stinner | Mark PyUnicode_CONVERT_BYTES as private |
commit | commitdiff | tree | snapshot |
2011-09-28 |
Georg Brandl | Add versionadded directive to new API function. |
commit | commitdiff | tree | snapshot |
2011-09-28 |
Georg Brandl | Rename new macros to conform to naming rules (function... |
commit | commitdiff | tree | snapshot |
2011-09-28 |
Victor Stinner | Set Py_UNICODE_REPLACEMENT_CHARACTER type to Py_UCS4... |
commit | commitdiff | tree | snapshot |
2011-09-28 |
Benjamin Peterson | merge heads |
commit | commitdiff | tree | snapshot |
2011-09-28 |
Benjamin Peterson | this isn't fixed on windows yet... |
commit | commitdiff | tree | snapshot |
2011-09-28 |
Ezio Melotti | #13012: use splitlines(keepends=True/False) instead... |
commit | commitdiff | tree | snapshot |
2011-09-28 |
Benjamin Peterson | this test works as expected now |
commit | commitdiff | tree | snapshot |
2011-09-28 |
Benjamin Peterson | revert unintended change |
commit | commitdiff | tree | snapshot |
2011-09-28 |
Benjamin Peterson | don't check that the first character is XID_Continue |
commit | commitdiff | tree | snapshot |
2011-09-28 |
Victor Stinner | test_ctypes: Windows is no more a special case |
commit | commitdiff | tree | snapshot |
2011-09-28 |
Martin v. Löwis | Fix struct sizes. Drop -1, since the resulting string... |
commit | commitdiff | tree | snapshot |
2011-09-28 |
Martin v. Löwis | Use compile() instead of eval(). |
commit | commitdiff | tree | snapshot |
2011-09-28 |
Martin v. Löwis | Use eval instead of codecs.lookup to trigger UTF-8... |
commit | commitdiff | tree | snapshot |
2011-09-28 |
Martin v. Löwis | ACKS for PEP 393. |
commit | commitdiff | tree | snapshot |
2011-09-28 |
Martin v. Löwis | Update for PEP 393. |
commit | commitdiff | tree | snapshot |
2011-09-28 |
Martin v. Löwis | Implement PEP 393. |
commit | commitdiff | tree | snapshot |
2011-09-28 |
Meador Inge | Issue #13013: ctypes: Fix a reference leak in PyCArrayT... |
commit | commitdiff | tree | snapshot |
2011-09-28 |
Meador Inge | Issue #13013: ctypes: Fix a reference leak in PyCArrayT... |
commit | commitdiff | tree | snapshot |
2011-09-27 |
Georg Brandl | Fix markup. |
commit | commitdiff | tree | snapshot |
2011-09-25 |
Martin v. Löwis | merged |
commit | commitdiff | tree | snapshot |
2011-09-25 |
Martin v. Löwis | Depend setobject.o and dictobject.o on stringlib/eq.h. |
commit | commitdiff | tree | snapshot |
2011-09-25 |
Mark Dickinson | Issue #1621: Fix undefined behaviour from signed overfl... |
commit | commitdiff | tree | snapshot |
2011-09-25 |
Mark Dickinson | Return +-Py_HUGE_VAL for tgamma(+-0) instead of risking... |
commit | commitdiff | tree | snapshot |
2011-09-24 |
Mark Dickinson | Issue #1621: Fix undefined behaviour from signed overfl... |
commit | commitdiff | tree | snapshot |
next |