summaryrefslogtreecommitdiffstats
path: root/Objects/unicodeobject.c
Commit message (Expand)AuthorAgeFilesLines
* 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
* Apply SF patch #1775604: This adds three new codecs (utf-32, utf-32-le andWalter Dörwald2007-08-161-0/+266
* Get rid of some dead code and unneeded XXX comments by Neal.Guido van Rossum2007-08-161-11/+3
* Implement PEP 3131. Add isidentifier to str.Martin v. Löwis2007-08-151-1/+44
* Add comment that should be addressedNeal Norwitz2007-08-121-0/+3
* PyErr_Warn is deprecated in 2.5 - goes away for 3.0Skip Montanaro2007-08-121-9/+10
* Fix refleak: decref inputobj after extracting the relavant info (the objectWalter Dörwald2007-08-101-0/+3
* Remove references to unicode from help(str).Collin Winter2007-08-071-2/+2
* Merged revisions 56753-56781 via svnmerge fromGuido van Rossum2007-08-061-2/+2
* Change PyUnicode_FromString[AndSize] to expect UTF-8.Martin v. Löwis2007-08-051-12/+8
* Bytes (which are the input for decoding) are mutable now. If a decodingWalter Dörwald2007-07-301-19/+35
* Fix merge breakage.Martin v. Löwis2007-07-211-4/+4
* Merged revisions 56467-56482 via svnmerge fromMartin v. Löwis2007-07-211-16/+13
* Fix a bug in PyUnicode_FromStringAndSize() with signed characters.Guido van Rossum2007-07-191-4/+4
* Merged revisions 56301-56442 via svnmerge fromGuido van Rossum2007-07-181-1/+2