summaryrefslogtreecommitdiffstats
path: root/Objects
Commit message (Expand)AuthorAgeFilesLines
* Get rid of more uses of string and use unicodeNeal Norwitz2007-10-272-2/+2
* Sort the method lists for str8 and bytes so differences are more apparent.Guido van Rossum2007-10-262-145/+177
* Patch 1335 by Christian Heimes.Guido van Rossum2007-10-261-1/+121
* Fix some Py_ssize_t warnings on Win64 that were probably bugsNeal Norwitz2007-10-262-4/+4
* Patch # 1302 by Christian Heimes (with some love from me :-).Guido van Rossum2007-10-251-12/+39
* Fix a refleak for `filename', introduced in rev. 58466.Georg Brandl2007-10-241-4/+0
* Fix a broken format in a PyErr_Format() call: %lx is not supported.Guido van Rossum2007-10-241-1/+1
* Patch #1303: Adapt str8 constructor to bytes (now buffer) one.Georg Brandl2007-10-241-5/+140
* #1316: remove redundant PyLong_Check calls when PyInt_Check was already called.Georg Brandl2007-10-231-2/+2
* Remove redundant PyInt/PyLong checks.Georg Brandl2007-10-231-9/+2
* 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
* Issue 1267, continued.Guido van Rossum2007-10-222-14/+6
* Patch 1267 by Christian Heimes.Guido van Rossum2007-10-191-9/+19
* Patch 1280, by Alexandre Vassalotti.Guido van Rossum2007-10-191-26/+9
* Patch# 1258 by Christian Heimes: kill basestring.Guido van Rossum2007-10-162-58/+4
* For PEP3137: Adds missing methods to the mutable PyBytes object (soonGregory P. Smith2007-10-168-1069/+1254
* 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-153-14/+44
* 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-132-5/+1
* Fix problems with memoryview object. There is still more to do to finish PEP...Travis E. Oliphant2007-10-122-354/+366
* PyFile_WriteObject() should use PyObject_Repr(), not _ReprStr8().Guido van Rossum2007-10-091-1/+1
* Patch #1049 by Thomas Lee.Guido van Rossum2007-10-091-2/+2
* Replace all (locale-dependent) uses of isupper(), tolower(), etc., byGuido van Rossum2007-10-091-65/+302
* Delete bufferobject.[ch].Guido van Rossum2007-10-083-726/+9
* At least one of the buildbots was complaining about newview being usedNeal Norwitz2007-10-071-3/+2
* Patch # 1145 by Thomas Lee:Guido van Rossum2007-09-271-7/+13
* Whitespace and line lengrth cleanup.Guido van Rossum2007-09-251-47/+50
* Change PyBuffer to Py_buffer to be consistent with other non-object structure...Travis E. Oliphant2007-09-236-58/+118
* Remove more cruft leftover from nb_coerce. Rename nb_coerce toNeil Schemenauer2007-09-216-8/+7
* Merged revisions 58203-58210 via svnmerge fromThomas Wouters2007-09-191-0/+8
* Merged revisions 58095-58132,58136-58148,58151-58197 via svnmerge fromThomas Wouters2007-09-193-1/+7
* Optimize unicode_hash() by not callingGuido van Rossum2007-09-181-12/+18
* Thomas Wouters suggested an obvious improvement to unicode_eq():Guido van Rossum2007-09-181-1/+1
* Switch dict lookup around to optimizing for unicode.Guido van Rossum2007-09-181-32/+52
* Micro optimizations after staring at gprof output for a while.Guido van Rossum2007-09-182-11/+9
* Fixing the spelling of "writeable" to "writable", particularly PyBUF_WRITEABLE.Sean Reifscheider2007-09-172-7/+7
* Bug # 1125 (my code).Guido van Rossum2007-09-101-55/+183
* Drop convert_binop.Martin v. Löwis2007-09-101-110/+48
* Merged revisions 57778-58052 via svnmerge fromThomas Wouters2007-09-083-10/+34
* Restore caching of unicode hash value. This apparently was brokenNeil Schemenauer2007-09-071-5/+12
* Check in some documentation tweaks for PEP 3141, add some tests, and implementJeffrey Yasskin2007-09-071-3/+4
* Simplified recursion logic. Modified variable name to match string.Formatter.Eric Smith2007-09-051-12/+10
* Changed some ValueError's to KeyError and IndexError.Eric Smith2007-09-041-7/+2
* Fix segfault discovered by Ron Adam. Not checking for terminating right brac...Eric Smith2007-09-031-4/+10
* Fix refleaks exposed by test_raise.Collin Winter2007-09-011-1/+5
* Get rid of METH_OLDARGS.Georg Brandl2007-09-011-13/+4
* Changed to use 'U' argument to PyArg_ParseTuple, instead of manually checking...Eric Smith2007-09-013-15/+5
* Removed unicode_format and unicode__format__, they just called through to oth...Eric Smith2007-08-311-19/+2