summaryrefslogtreecommitdiffstats
path: root/Objects
Commit message (Expand)AuthorAgeFilesLines
* Fix gdb/libpython.py for not ready Unicode stringsVictor Stinner2011-11-041-2/+5
* Replace tabs by spacesVictor Stinner2011-11-041-46/+46
* Drop Py_UNICODE based encode exceptions.Martin v. Löwis2011-11-041-60/+22
* Port code page codec to Unicode API.Martin v. Löwis2011-11-041-54/+69
* Port error handlers from Py_UNICODE indexing to code point indexing.Martin v. Löwis2011-11-041-0/+5
* Fix a compiler warning in unicode_encode_ucs1()Victor Stinner2011-11-031-1/+1
* Fix PyUnicode_EncodeCharmap()Victor Stinner2011-11-031-1/+1
* Replace PyUnicodeObject type by PyObjectVictor Stinner2011-11-032-146/+132
* Cleanup decode_code_page_stateful() and encode_code_page()Victor Stinner2011-11-031-111/+75
* Adapt the code page encoder to the new unicode_encode_call_errorhandler()Victor Stinner2011-11-031-34/+50
* Fix a compile error (apparently Windows only) introduced in 295fdfd4f422Brian Curtin2011-11-021-2/+3
* Port UCS1 and charmap codecs to new API.Martin v. Löwis2011-11-021-84/+127
* Introduce PyObject* API for raising encode errors.Martin v. Löwis2011-11-021-3/+49
* Drop Py_UCS4_ functions. Closes #13246.Martin v. Löwis2011-10-312-101/+90
* merge 3.2Benjamin Peterson2011-10-301-1/+1
|\
| * remove unused variableBenjamin Peterson2011-10-301-1/+1
* | Fix the return value of set_discard (issue #10519)Petri Lehtinen2011-10-301-2/+3
|\ \ | |/
| * Fix the return value of set_discard (issue #10519)Petri Lehtinen2011-10-301-2/+3
* | Avoid unnecessary recursive function calls (#closes #10519)Petri Lehtinen2011-10-301-2/+2
|\ \ | |/
| * Avoid unnecessary recursive function calls (closes #10519)Petri Lehtinen2011-10-301-2/+2
* | PyUnicode_AsUnicodeCopy() uses PyUnicode_AsUnicodeAndSize() to get directly t...Victor Stinner2011-10-231-4/+4
* | Fix PyUnicode_InternImmortal(): PyUnicode_InternInPlace() may changes *pVictor Stinner2011-10-231-3/+1
* | Cast directly to unsigned char, instead of using Py_CHARMASKVictor Stinner2011-10-231-2/+2
* | Replace PyUnicodeObject* by PyObject* where it was irrevelantVictor Stinner2011-10-232-143/+130
* | Fix data variable in _PyUnicode_Dump() for compact ASCIIVictor Stinner2011-10-231-2/+10
* | Remove last references to the removed Unicode free listVictor Stinner2011-10-231-23/+0
* | PyUnicode_FSDecoder() ensures that the decoded string is readyVictor Stinner2011-10-261-0/+4
* | merge headsPetri Lehtinen2011-10-241-15/+23
|\ \
| * | Issue #12965: Fix some inaccurate comments in Objects/longobject.c. Thanks S...Mark Dickinson2011-10-231-15/+23
* | | Merge 3.2Petri Lehtinen2011-10-241-4/+12
|\ \ \ | |/ / |/| / | |/
| * Issue #13018: Fix reference leaks in error paths in dictobject.c.Petri Lehtinen2011-10-241-4/+12
* | Issue #13201: equality for range objects is now based on equality of the unde...Mark Dickinson2011-10-231-2/+133
* | Merge issue 1294232 patch from 3.2Nick Coghlan2011-10-231-20/+41
|\ \ | |/
| * Issue 1294232: Fix errors in metaclass calculation affecting some cases of me...Nick Coghlan2011-10-231-20/+41
* | Fix unicode_subtype_new() on debug buildVictor Stinner2011-10-221-1/+1
* | Remove unused variable.Ezio Melotti2011-10-211-1/+0
* | #12753: Add support for Unicode name aliases and named sequences.Ezio Melotti2011-10-211-1/+1
* | Issue #12170: The count(), find(), rfind(), index() and rindex() methodsAntoine Pitrou2011-10-203-31/+133
* | merge 3.2Benjamin Peterson2011-10-191-5/+4
|\ \ | |/
| * adjust braces a bitBenjamin Peterson2011-10-191-5/+4
* | Add consistency check to _PyUnicode_New()Victor Stinner2011-10-181-0/+1
* | Issue #12281: Rewrite the MBCS codec to handle correctly replace and ignoreVictor Stinner2011-10-181-141/+609
* | Issue #13188: When called without an explicit traceback argument,Antoine Pitrou2011-10-181-0/+5
|\ \ | |/
| * Issue #13188: When called without an explicit traceback argument,Antoine Pitrou2011-10-181-0/+5
* | Fix typoAntoine Pitrou2011-10-171-1/+1
* | merge 3.2 (#13199)Benjamin Peterson2011-10-171-1/+5
|\ \ | |/
| * plug possible refleak (closes #13199)Benjamin Peterson2011-10-171-1/+5
* | remove some duplicationBenjamin Peterson2011-10-151-10/+4
* | Port SetAttrString/HasAttrString to SetAttrId/GetAttrId.Martin v. Löwis2011-10-142-3/+4
* | Rename _Py_identifier to _Py_IDENTIFIER.Martin v. Löwis2011-10-1410-29/+29