summaryrefslogtreecommitdiffstats
path: root/Objects
Commit message (Expand)AuthorAgeFilesLines
* Patch by Keir Mierle so that sets can be compared to other objects that knowGuido van Rossum2007-08-231-6/+2
* CFunctions' doc strings should be Unicode.Guido van Rossum2007-08-231-2/+2
* Finish the work on __round__ and __trunc__.Guido van Rossum2007-08-232-10/+93
* Convert a bunch of constant strings in C to unicode.Neal Norwitz2007-08-233-4/+4
* Change the error reporting when an invalid string is encountered to avoidGuido van Rossum2007-08-221-18/+9
* Fix memory leak in arraymodule.c and respond to a few comments by nnorwitz.Travis E. Oliphant2007-08-201-1/+0
* Remove _PyObject_DelNeal Norwitz2007-08-191-1/+1
* SF #1777057, fix memoryview('test') so it works in debug mode too.Neal Norwitz2007-08-191-30/+18
* Code review of the new buffer protocol. Mostly add questions that shouldNeal Norwitz2007-08-195-17/+24
* Merged in py3k-buffer branch to main line. All objects now use the buffer pr...Travis E. Oliphant2007-08-188-521/+1305
* 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 XID_Start and XID_Continue properties to unicodectype.Martin v. Löwis2007-08-142-886/+952
* Format bools properly in %d.Martin v. Löwis2007-08-141-2/+5
* 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 memory leakNeal Norwitz2007-08-121-1/+1
* Kill execfile(), use exec() insteadNeal Norwitz2007-08-121-1/+1
* Remove support for __members__ and __methods__. There still might beNeal Norwitz2007-08-111-35/+0
* Fix refleak: decref inputobj after extracting the relavant info (the objectWalter Dörwald2007-08-101-0/+3
* In PyFile_WriteString(), call PyUnicode_FromString() instead ofGuido van Rossum2007-08-091-1/+1
* Oops. The PyObject_Print() function was totally broken; the original codeGuido van Rossum2007-08-091-3/+19
* Fix core dump in an endcase of b.strip() that I missed.Guido van Rossum2007-08-081-1/+4
* Change the repr() of frozenset instances (and set subclasses)Guido van Rossum2007-08-071-22/+24
* Oops. I killed a bit too much and not enough when I deleted intobject.c.Guido van Rossum2007-08-071-0/+6
* Kill all uses and definitions of tp_print under Objects/. (Others will follow.)Guido van Rossum2007-08-0711-1470/+11
* Remove references to unicode from help(str).Collin Winter2007-08-071-2/+2
* Merged revisions 56753-56781 via svnmerge fromGuido van Rossum2007-08-062-4/+4
* Change PyUnicode_FromString[AndSize] to expect UTF-8.Martin v. Löwis2007-08-052-17/+15
* Merged revisions 56492-56752 via svnmerge fromGuido van Rossum2007-08-052-7/+7
* Fix an obvious bug caused by a switch to Unicode.Guido van Rossum2007-08-041-1/+2
* Add a default __prepare__() method to 'type', so it can be calledGuido van Rossum2007-08-021-0/+10
* Changes to long and float by Jeffrey Jasskin to conform to PEP 3141.Guido van Rossum2007-08-012-35/+54
* Kill div, mod and divmod on complex (already deprecated in 2.x).Guido van Rossum2007-08-011-55/+15
* Bytes (which are the input for decoding) are mutable now. If a decodingWalter Dörwald2007-07-301-19/+35
* Fix the docstrings for keys(), items(), values() (especially the latter).Guido van Rossum2007-07-271-61/+6
* Fix merge breakage.Martin v. Löwis2007-07-214-15/+15
* Merged revisions 56467-56482 via svnmerge fromMartin v. Löwis2007-07-2133-916/+844
* Fix test_pickle, by reverting the string opcodes (S, T, U) to returningGuido van Rossum2007-07-191-5/+3
* 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-182-2/+4
* Change Py_BuildValue to generate Unicode objects forMartin v. Löwis2007-07-182-8/+15
* 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
* Revert a wrong commit.Thomas Heller2007-07-111-14/+7
* Must create heaptypes with unicode names.Thomas Heller2007-07-111-7/+14
* Remove unused local variable.Thomas Heller2007-07-111-1/+0