summaryrefslogtreecommitdiffstats
path: root/Objects/stringobject.c
Commit message (Expand)AuthorAgeFilesLines
* Renamed files bytesobject.[ch] and stringobject.[ch]Christian Heimes2008-05-261-3429/+0
* Renamed PyString to PyBytesChristian Heimes2008-05-261-297/+297
* Renamed PyBytes to PyByteArrayChristian Heimes2008-05-261-3/+3
* Merged revisions 62998-63003,63005-63006,63009-63012,63014-63017,63019-63020,...Alexandre Vassalotti2008-05-161-2/+2
* Merged revisions 63078 via svnmerge fromEric Smith2008-05-111-0/+2
* Merged revisions 62260-62261,62266,62271,62277-62279,62289-62290,62293-62298,...Christian Heimes2008-04-131-1/+5
* Fixed issue #1973: bytes.fromhex('') raises SystemErrorChristian Heimes2008-01-301-2/+2
* Clean up PyString_Size().Alexandre Vassalotti2008-01-071-14/+7
* #1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFCNT.Christian Heimes2007-12-191-34/+34
* Fixed issue #1564: The set implementation should special-case PyUnicode inste...Christian Heimes2007-12-101-10/+0
* Merged revisions 59407-59422 via svnmerge fromChristian Heimes2007-12-081-19/+44
* Cleanup: Replaced most PyInt_ aliases with PyLong_ and disabled the aliases i...Christian Heimes2007-12-021-9/+9
* Remove unused variable.Georg Brandl2007-11-251-1/+0
* Use proper API for iter.__next__().Georg Brandl2007-11-241-8/+3
* Just inline a function, and discover that it can only raise an exception.Amaury Forgeot d'Arc2007-11-221-14/+7
* Removed blocks from several functions in unicodeobject and stringobject where...Christian Heimes2007-11-221-57/+3
* Typo in bytes.replace(): the buffer interface was always used.Amaury Forgeot d'Arc2007-11-221-1/+1
* PyString_AsString is permissive and accepts unicode strings.Amaury Forgeot d'Arc2007-11-221-2/+2
* Rename buffer -> bytearray.Guido van Rossum2007-11-211-1/+1
* Merged revisions 59005-59040 via svnmerge fromChristian Heimes2007-11-181-2/+13
* Merged revisions 58886-58929 via svnmerge fromGuido van Rossum2007-11-101-0/+1
* Merging the py3k-pep3137 branch back into the py3k branch.Guido van Rossum2007-11-061-1257/+347
* Merged revisions 58221-58741 via svnmerge fromGuido van Rossum2007-11-011-3/+3
* Sort the method lists for str8 and bytes so differences are more apparent.Guido van Rossum2007-10-261-77/+109
* Patch #1303: Adapt str8 constructor to bytes (now buffer) one.Georg Brandl2007-10-241-5/+140
* Patch 1280, by Alexandre Vassalotti.Guido van Rossum2007-10-191-26/+9
* Patch# 1258 by Christian Heimes: kill basestring.Guido van Rossum2007-10-161-56/+2
* For PEP3137: Adds missing methods to the mutable PyBytes object (soonGregory P. Smith2007-10-161-986/+37
* Replace all (locale-dependent) uses of isupper(), tolower(), etc., byGuido van Rossum2007-10-091-65/+302
* Change PyBuffer to Py_buffer to be consistent with other non-object structure...Travis E. Oliphant2007-09-231-1/+1
* Remove the simple slicing API. All slicing is now done with slice objects.Thomas Wouters2007-08-301-24/+1
* Merge the trunk changes in. Breaks socket.ssl for now.Thomas Wouters2007-08-281-0/+11
* Merged in py3k-buffer branch to main line. All objects now use the buffer pr...Travis E. Oliphant2007-08-181-42/+5
* Format bools properly in %d.Martin v. Löwis2007-08-141-2/+5
* Kill all uses and definitions of tp_print under Objects/. (Others will follow.)Guido van Rossum2007-08-071-66/+1
* Merged revisions 56753-56781 via svnmerge fromGuido van Rossum2007-08-061-2/+2
* Fix merge breakage.Martin v. Löwis2007-07-211-1/+1
* Merged revisions 56467-56482 via svnmerge fromMartin v. Löwis2007-07-211-65/+62
* Merged revisions 56301-56442 via svnmerge fromGuido van Rossum2007-07-181-1/+2
* Fix a subtle bug in PyString_Repr().Guido van Rossum2007-07-031-2/+3
* Patch by Ron Adam to make repr(str8(...)) return something looking likeGuido van Rossum2007-06-151-2/+2
* Merged revisions 55817-55961 via svnmerge fromGuido van Rossum2007-06-131-37/+41
* Make identifiers str (not str8) objects throughout.Martin v. Löwis2007-06-101-1/+11
* Don't lie in error messages from str8.Guido van Rossum2007-06-071-9/+9
* Add functions PyUnicode_Append() and PyUnicode_AppendAndDel() that mirrorWalter Dörwald2007-05-181-18/+29
* Merged revisions 55342-55406 via svnmerge fromGuido van Rossum2007-05-171-2/+0
* More coding by random modification.Guido van Rossum2007-05-041-2/+2
* Fix type name (str has been renamed to str8).Walter Dörwald2007-05-031-1/+1
* Get rid of all #ifdef Py_USING_UNICODE (it is always present now).Guido van Rossum2007-05-031-82/+5
* Rename 'unicode' to 'str' in its tp_name field. Rename 'str' to 'str8'.Guido van Rossum2007-05-031-1/+1