summaryrefslogtreecommitdiffstats
path: root/Objects/unicodeobject.c
Commit message (Expand)AuthorAgeFilesLines
* Cleanup: Replaced most PyInt_ aliases with PyLong_ and disabled the aliases i...Christian Heimes2007-12-021-34/+34
* Added view and iterator types to collections / _abcollChristian Heimes2007-11-281-1/+1
* #1496: revert str.translate() to the old version, and addGeorg Brandl2007-11-271-46/+104
* CleanupChristian Heimes2007-11-231-1/+0
* Removed blocks from several functions in unicodeobject and stringobject where...Christian Heimes2007-11-221-36/+9
* Rename buffer -> bytearray.Guido van Rossum2007-11-211-1/+1
* Merged revisions 59056-59076 via svnmerge fromChristian Heimes2007-11-201-2/+19
* Merged revisions 59005-59040 via svnmerge fromChristian Heimes2007-11-181-32/+16
* Replace PyObject_Unicode with PyObject_Str everywhere, and remove theThomas Heller2007-11-151-6/+6
* Merging the py3k-pep3137 branch back into the py3k branch.Guido van Rossum2007-11-061-131/+94
* Fixed a bug in PyUnicode_DecodeFSDefault. strcmp() returns 0 on success.Christian Heimes2007-11-041-4/+8
* Merged revisions 58221-58741 via svnmerge fromGuido van Rossum2007-11-011-3/+6
* Patch # 1302 by Christian Heimes (with some love from me :-).Guido van Rossum2007-10-251-12/+39
* Fix a broken format in a PyErr_Format() call: %lx is not supported.Guido van Rossum2007-10-241-1/+1
* Patch #1071: Improve unicode.translate() so that you can pass unicodeGeorg Brandl2007-10-231-4/+48
* Make str/str8 comparisons return True/False for !=/==.Brett Cannon2007-10-221-10/+0
* Patch# 1258 by Christian Heimes: kill basestring.Guido van Rossum2007-10-161-2/+2
* Fix a small typo in the comment of unicode_default_encoding[].Alexandre Vassalotti2007-10-161-1/+1
* Patch #1272, by Christian Heimes and Alexandre Vassalotti.Guido van Rossum2007-10-151-1/+34
* Remove the buffer API from PyUnicode as specified by PEP 3137. Also,Alexandre Vassalotti2007-10-141-15/+1
* Eliminate use of PyBUF_CHARACTER flag which is no longer part of the buffer i...Travis E. Oliphant2007-10-131-4/+0
* Delete bufferobject.[ch].Guido van Rossum2007-10-081-1/+5
* Patch # 1145 by Thomas Lee:Guido van Rossum2007-09-271-7/+13
* Change PyBuffer to Py_buffer to be consistent with other non-object structure...Travis E. Oliphant2007-09-231-1/+1
* Optimize unicode_hash() by not callingGuido van Rossum2007-09-181-12/+18
* Micro optimizations after staring at gprof output for a while.Guido van Rossum2007-09-181-3/+4
* Restore caching of unicode hash value. This apparently was brokenNeil Schemenauer2007-09-071-5/+12
* Removed unicode_format and unicode__format__, they just called through to oth...Eric Smith2007-08-311-19/+2
* Per Georg's suggestion, get rid of str.decode() (which always raises anGuido van Rossum2007-08-311-19/+0
* Change %s argument for PyUnicode_FromFormat toMartin v. Löwis2007-08-311-2/+46
* Remove the simple slicing API. All slicing is now done with slice objects.Thomas Wouters2007-08-301-23/+1
* Set startinpos before calling the error handler.Walter Dörwald2007-08-301-0/+1
* Rewrap line.Walter Dörwald2007-08-301-1/+2
* Oops, remove an abort() I put in for debugging.Guido van Rossum2007-08-291-1/+0
* Add PyUnicode_AsStringAndSize(), which is like PyUnicode_AsString() butGuido van Rossum2007-08-291-4/+14
* Commit strict str/bytes distinction.Guido van Rossum2007-08-291-50/+5
* Merge the trunk changes in. Breaks socket.ssl for now.Thomas Wouters2007-08-281-0/+6
* Moved fieldnameiterator and formatteriterator to stringlib/string_format.h, s...Eric Smith2007-08-271-343/+2
* Cleanup in anticipation of moving formatteriterator and fieldnameiterator int...Eric Smith2007-08-271-2/+2
* There should be no codecs left that return str8 intead of bytes.Guido van Rossum2007-08-271-7/+1
* Fixed accidental indentation change.Eric Smith2007-08-271-1/+1
* PEP 3101: Removed _formatter_xxx routines from sysmodule, and made them unico...Eric Smith2007-08-271-337/+344
* Fix refleaks in test_unicode and test_string related to the new format code.Neal Norwitz2007-08-271-30/+20
* PEP 3101: Completed string.Formatter class. Reimplemented field_name to obje...Eric Smith2007-08-261-8/+157
* Restore an assert, but move it to the proper place.Neal Norwitz2007-08-261-1/+1
* Remove assert that seems out of place. It triggers with test_string,Neal Norwitz2007-08-261-2/+0
* Implementation of PEP 3101, Advanced String Formatting.Eric Smith2007-08-251-15/+231
* Since PyUnicode_AsString is a public API, don't just assert, but doNeal Norwitz2007-08-251-1/+4
* Merged in py3k-buffer branch to main line. All objects now use the buffer pr...Travis E. Oliphant2007-08-181-48/+15
* Move some declarations before code, to compile with GCC 2.95.Guido van Rossum2007-08-171-7/+7