summaryrefslogtreecommitdiffstats
path: root/Objects
Commit message (Collapse)AuthorAgeFilesLines
* Merge headsAntoine Pitrou2011-11-263-118/+113
|\
| * Close #13093: PyUnicode_EncodeDecimal() doesn't support error handlersVictor Stinner2011-11-251-113/+18
| | | | | | | | | | different than "strict" anymore. The caller was unable to compute the size of the output buffer: it depends on the error handler.
| * PEP 3155 / issue #13448: Qualified name for classes and functions.Antoine Pitrou2011-11-252-5/+95
| |
* | Better resolution for issue #11849: Ensure that free()d memory arenas are ↵Antoine Pitrou2011-11-261-15/+22
|/ | | | | | really released on POSIX systems supporting anonymous memory mappings. Patch by Charles-François Natali.
* and back to the "magic" formula (with a comment) it isBenjamin Peterson2011-11-231-15/+3
|
* cave to those who like readable codeBenjamin Peterson2011-11-231-1/+15
|
* fix compiler warning by implementing this more cleverlyBenjamin Peterson2011-11-221-6/+1
|
* find_maxchar_surrogates() reuses surrogate macrosVictor Stinner2011-11-221-4/+4
|
* Issue #13441: Disable temporary the check on the maximum character untilVictor Stinner2011-11-221-20/+12
| | | | | | | | | | the Solaris issue is solved. But add assertion on the maximum character in various encoders: UTF-7, UTF-8, wide character (wchar_t*, Py_UNICODE*), unicode-escape, raw-unicode-escape. Fix also unicode_encode_ucs1() for backslashreplace error handler: Python is now always "wide".
* Fix compiler warningsVictor Stinner2011-11-221-1/+2
|
* Use the new Unicode APIVictor Stinner2011-11-221-1/+1
| | | | | | | | * Replace PyUnicode_FromUnicode(NULL, 0) by PyUnicode_New(0, 0) * Replce PyUnicode_FromUnicode(str, len) by PyUnicode_FromWideChar(str, len) * Replace Py_UNICODE by wchar_t * posix_putenv() uses PyUnicode_FromFormat() to create the string, instead of PyUnicode_FromUnicode() + _snwprintf()
* (Merge 3.2) Issue #13093: Fix error handling on PyUnicode_EncodeDecimal()Victor Stinner2011-11-221-4/+8
|
* PyUnicode_FromKindAndData() fails with a ValueError if size < 0Victor Stinner2011-11-221-1/+4
|
* UTF-8 decoder: set consumed value in the latin1 fast-pathVictor Stinner2011-11-221-0/+3
|
* Replace _PyUnicode_READY_REPLACE() and _PyUnicode_ReadyReplace() with ↵Victor Stinner2011-11-221-143/+150
| | | | | | | | | | unicode_ready() * unicode_ready() has a simpler API * try to reuse unicode_empty and latin1_char singleton everywhere * Fix a reference leak in _PyUnicode_TranslateCharmap() * PyUnicode_InternInPlace() doesn't try to get a singleton anymore, to avoid having to handle a failure
* Rewrite PyUnicode_TransformDecimalToASCII() to use the new Unicode APIVictor Stinner2011-11-211-17/+26
|
* Remove an unused variable from PyUnicode_Copy()Victor Stinner2011-11-211-2/+0
|
* Simplify PyUnicode_Copy()Victor Stinner2011-11-211-26/+7
| | | | USe PyUnicode_Copy() in fixup()
* Fix a compiler warning in _PyUnicode_CheckConsistency()Victor Stinner2011-11-211-1/+1
|
* Rewrite PyUnicode_EncodeDecimal() to use the new Unicode APIVictor Stinner2011-11-211-44/+53
| | | | | Add tests for PyUnicode_EncodeDecimal() and PyUnicode_TransformDecimalToASCII().
* Issue #13411: memoryview objects are now hashable when the underlying object ↵Antoine Pitrou2011-11-213-17/+53
| | | | is hashable.
* Issue #13417: speed up utf-8 decoding by around 2x for the non-fully-ASCII case.Antoine Pitrou2011-11-212-107/+277
| | | | | This almost catches up with pre-PEP 393 performance, when decoding needed only one pass.
* Issue #13441: _PyUnicode_CheckConsistency() dumps the string if the maximumVictor Stinner2011-11-211-0/+13
| | | | | | | character is bigger than U+10FFFF and locale.localeconv() dumps the string before decoding it. Temporary hack to debug the issue #13441.
* Fix misuse of PyUnicode_GET_SIZE() => PyUnicode_GET_LENGTH()Victor Stinner2011-11-213-5/+5
| | | | And PyUnicode_GetSize() => PyUnicode_GetLength()
* UnicodeTranslateError uses the new Unicode APIVictor Stinner2011-11-211-3/+3
| | | | The index is a character index, not a index in a Py_UNICODE* string.
* UnicodeEncodeError uses the new Unicode APIVictor Stinner2011-11-201-3/+3
| | | | The index is a character index, not a index in a Py_UNICODE* string.
* PyObject_Str() ensures that the result string is readyVictor Stinner2011-11-202-2/+5
| | | | | | | and check the string consistency. _PyUnicode_CheckConsistency() doesn't check the hash anymore. It should be possible to call this function even if hash(str) was already called.
* stringlib: remove unused STRINGLIB_FILLVictor Stinner2011-11-206-6/+0
|
* PyUnicode_AsUTF32String() calls directly _PyUnicode_EncodeUTF32(),Victor Stinner2011-11-201-6/+1
| | | | instead of calling the deprecated PyUnicode_EncodeUTF32() function
* _PyUnicode_CheckConsistency() also checks maxchar maximum value,Victor Stinner2011-11-201-3/+9
| | | | not only its minimum value
* Remove the two ugly and unused WRITE_ASCII_OR_WSTR and WRITE_WSTR macrosVictor Stinner2011-11-201-18/+0
|
* Reuse surrogate macros in UTF-16 decoderVictor Stinner2011-11-201-5/+4
|
* charmap_encoding_error() uses the new Unicode APIVictor Stinner2011-11-201-3/+13
|
* Use PyUnicode_EncodeCodePage() instead of PyUnicode_EncodeMBCS() withVictor Stinner2011-11-201-16/+3
| | | | PyUnicode_AsUnicodeAndSize()
* charmap encoders uses Py_UCS4, not Py_UNICODEVictor Stinner2011-11-201-7/+4
|
* Issue #10227: Add an allocation cache for a single slice object.Antoine Pitrou2011-11-181-7/+29
| | | | Patch by Stefan Behnel.
* Catch PyUnicode_AS_UNICODE() errorsVictor Stinner2011-11-161-11/+22
|
* #13406: silence deprecation warnings in test_codecs.Ezio Melotti2011-11-161-1/+1
|
* Issue #13333: The UTF-7 decoder now accepts lone surrogatesAntoine Pitrou2011-11-151-9/+7
|\ | | | | | | (the encoder already accepts them).
| * Issue #13333: The UTF-7 decoder now accepts lone surrogatesAntoine Pitrou2011-11-151-9/+5
| | | | | | | | (the encoder already accepts them).
* | Issue #13389: Full garbage collection passes now clear the freelists forAntoine Pitrou2011-11-142-6/+20
| | | | | | | | | | list and dict objects. They already cleared other freelists in the interpreter.
* | Use the small object allocator for small bytearraysAntoine Pitrou2011-11-121-5/+5
| |
* | Sanitize reference management in the utf-8 encoderAntoine Pitrou2011-11-121-5/+4
| |
* | Issue #13161: fix doc strings of __i*__ operators. Closes #13161Eli Bendersky2011-11-111-10/+10
|\ \ | |/
| * Issue #13161: fix doc strings of __i*__ operatorsEli Bendersky2011-11-111-10/+10
| |
* | Fix regression on 2-byte wchar_t systems (Windows)Antoine Pitrou2011-11-111-7/+12
| |
* | Avoid crashing because of an unaligned word accessAntoine Pitrou2011-11-111-1/+9
| |
* | Issue #13149: Speed up append-only StringIO objects.Antoine Pitrou2011-11-101-1/+1
| | | | | | | | This is very similar to the "lazy strings" idea.
* | Fix and deprecated the unicode_internal codecVictor Stinner2011-11-101-6/+22
| | | | | | | | | | | | unicode_internal codec uses Py_UNICODE instead of the real internal representation (PEP 393: Py_UCS1, Py_UCS2 or Py_UCS4) for backward compatibility.
* | Prefer Py_UCS4 or wchar_t over Py_UNICODEVictor Stinner2011-11-101-8/+7
| |