summaryrefslogtreecommitdiffstats
path: root/Objects/unicodeobject.c
Commit message (Expand)AuthorAgeFilesLines
* Four months of trunk changes (including a few releases...)Thomas Wouters2006-12-131-16/+36
* Merge current trunk into p3yk. This includes the PyNumber_Index API change,Thomas Wouters2006-08-211-5/+80
* Make the it_index field in the str/unicode iterators Py_ssize_t's.Guido van Rossum2006-08-171-4/+6
* Completely get rid of PyClass and PyInstance.Guido van Rossum2006-08-171-1/+121
* Merged revisions 46753-51188 via svnmerge fromThomas Wouters2006-08-111-62/+233
* Get rid of most of the flags (in tp_flags) that keep track of variousGuido van Rossum2006-07-271-5/+2
* Merge the rest of the trunk.Thomas Wouters2006-06-081-49/+288
* Much-needed merge (using svnmerge.py this time) of trunk changes into p3yk.Thomas Wouters2006-05-271-317/+455
* Merge p3yk branch with the trunk up to revision 45595. This breaks a fairThomas Wouters2006-04-211-59/+64
* Get rid of remnants of integer divisionNeal Norwitz2006-03-241-1/+0
* - Reindent a confusingly indented piece of code (no intended code changesThomas Wouters2006-03-121-13/+16
* Update Unicode database to Unicode 4.1.Martin v. Löwis2006-03-091-1/+1
* Checking in the code for PEP 357.Guido van Rossum2006-03-071-2/+5
* SF #1444030: Fix several potential defects found by Coverity.Hye-Shik Chang2006-03-071-8/+14
* Revert backwards-incompatible const changes.Martin v. Löwis2006-02-271-1/+1
* Use correct PyArg_Parse format char for Py_ssize_t in unicode.center().Thomas Wouters2006-02-161-1/+1
* Use Py_ssize_t for counts and sizes.Martin v. Löwis2006-02-161-1/+1
* Support %zd in PyErr_Format and PyString_FromFormat.Martin v. Löwis2006-02-161-6/+3
* doubletounicode(), longtounicode():Tim Peters2006-02-161-4/+8
* Remove two unused Py_ssize_t variables (merge glitches, looks like.)Thomas Wouters2006-02-151-2/+0
* Merge ssize_t branch.Martin v. Löwis2006-02-151-287/+299
* - Patch #1400181, fix unicode string formatting to not use the locale.Neal Norwitz2006-01-101-16/+21
* Fix icc warnings: remove (sometimes) unused variable conditionallyNeal Norwitz2006-01-081-2/+4
* Stop maintaining the buildno file.Martin v. Löwis2006-01-051-12/+15
* Bug #1379994: Fix *unicode_escape codecs to encode r'\' as r'\\'Hye-Shik Chang2005-12-171-3/+3
* Add const to several API functions that take char *.Jeremy Hylton2005-12-101-1/+1
* Fix leaked reference to None.Walter Dörwald2005-11-281-0/+1
* Another comment typo fixAndrew M. Kuchling2005-11-021-1/+1
* Fix typo in comment.Walter Dörwald2005-11-021-1/+1
* fix typos, mostly in commentsFred Drake2005-10-281-2/+2
* Fix bug:Michael W. Hudson2005-10-211-4/+0
* Whitespace corrections.Marc-André Lemburg2005-10-191-19/+19
* Bug fix for [ 1331062 ] utf 7 codec broken.Marc-André Lemburg2005-10-191-8/+16
* Part of SF patch #1313939: Speedup charmap decoding by extendingWalter Dörwald2005-10-061-75/+107
* SF bug #1251300: On UCS-4 builds the "unicode-internal" codec will now complainWalter Dörwald2005-08-301-0/+75
* Correct the handling of 0-termination of PyUnicode_AsWideChar()Marc-André Lemburg2004-11-221-1/+7
* Applied patch for [ 1047269 ] Buffer overwrite in PyUnicode_AsWideChar.Marc-André Lemburg2004-10-151-2/+2
* Initialize sep and seplen to suppress warning from gcc.Skip Montanaro2004-09-161-3/+3
* Add a missing line continuation character.Thomas Heller2004-09-151-1/+1
* Make the hint about the None default less ambiguous.Walter Dörwald2004-09-141-1/+1
* Enhance the docstrings for unicode.split() and string.split()Walter Dörwald2004-09-141-2/+2
* SF patch #998993: The UTF-8 and the UTF-16 stateful decoders now supportWalter Dörwald2004-09-071-23/+57
* PyUnicode_Join(): Bozo Alert. While this is chugging along, it mayTim Peters2004-08-271-0/+12
* PyUnicode_Join(): Rewrote to use PySequence_Fast(). This doesn't doTim Peters2004-08-271-126/+96
* PyUnicode_Join(): Missed a spot where I intended a cast from size_t toTim Peters2004-08-271-1/+1
* PyUnicode_Join(): Two primary aims:Tim Peters2004-08-271-40/+120
* SF #989185: Drop unicode.iswide() and unicode.width() and addHye-Shik Chang2004-08-041-67/+0
* Let u'%s' % obj try obj.__unicode__() first and fallback to obj.__str__().Marc-André Lemburg2004-07-231-10/+12
* Moved SunPro warning suppression into pyport.h and out of individualNicholas Bastin2004-07-151-4/+0
* Fix a copy&paste typo.Marc-André Lemburg2004-07-101-1/+1