summaryrefslogtreecommitdiffstats
path: root/Objects/unicodeobject.c
Commit message (Expand)AuthorAgeFilesLines
* 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
* Three patches by Amaury Forgeot d'Arc; SF patch# 1754484.Guido van Rossum2007-07-161-1/+1
* Make chr() and ord() return/accept surrogate pairs in narrow builds.Guido van Rossum2007-07-151-10/+9
* Fixed a refcount leak in _PyUnicode_AsDefaultEncodedString().Guido van Rossum2007-07-121-4/+1
* Make test_descr.py pass. Had to disable a few tests, remove referencesGuido van Rossum2007-07-111-1/+1
* Silence GCC warning about uninitialzed variable.Walter Dörwald2007-06-201-12/+5
* Merged revisions 55817-55961 via svnmerge fromGuido van Rossum2007-06-131-8/+26
* Make it compile with GCC 2.96.Guido van Rossum2007-06-131-3/+5
* Mention name of left operand, if "foo in unicode_string"Walter Dörwald2007-06-121-2/+3
* Add a format specifier %V to PyUnicode_FromFormat(), that works similar to %U,Walter Dörwald2007-06-111-0/+25
* Make identifiers str (not str8) objects throughout.Martin v. Löwis2007-06-101-3/+94
* unichr() is named chr() now => fix name in error message.Walter Dörwald2007-06-051-2/+2
* Add support for width, precision and zeropadding to the %d, %i, %u and %xWalter Dörwald2007-05-311-30/+86
* Add interning of unicode strings by copying the functionality fromWalter Dörwald2007-05-251-0/+139
* Simplify %U handling by using Py_UNICODE_COPY.Walter Dörwald2007-05-241-5/+3
* Add a format character %S to PyUnicode_FromFormat() thatWalter Dörwald2007-05-231-7/+22
* Add a format specifier %R to PyUnicode_FromFormat(), which embedsWalter Dörwald2007-05-191-3/+64
* Add functions PyUnicode_Append() and PyUnicode_AppendAndDel() that mirrorWalter Dörwald2007-05-181-7/+30