summaryrefslogtreecommitdiff
path: root/Objects
Commit message (Expand)AuthorAgeFilesLines
* 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
* Make test_descr.py pass. Had to disable a few tests, remove referencesGuido van Rossum2007-07-114-12/+13
* Fix a subtle bug in PyString_Repr().Guido van Rossum2007-07-031-2/+3
* Change float.__getformat__() to return a unicode string.Walter Dörwald2007-06-221-3/+3
* Silence GCC warning about uninitialzed variable.Walter Dörwald2007-06-201-12/+5
* Patch by Ron Adam: Don't use u prefix in unicode error messagesWalter Dörwald2007-06-201-6/+6
* Merged revisions 55962-56019 via svnmerge fromGuido van Rossum2007-06-182-157/+93
* 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-138-150/+229
* Discard unused function.Guido van Rossum2007-06-131-34/+0
* Make it compile with GCC 2.96.Guido van Rossum2007-06-131-3/+5
* Rip out the file object's implementation.Guido van Rossum2007-06-121-2121/+20
* Mention name of left operand, if "foo in unicode_string"Walter Dörwald2007-06-121-2/+3
* Minimal changes to make the "freeze" tool work again.Guido van Rossum2007-06-121-17/+12
* Add a format specifier %V to PyUnicode_FromFormat(), that works similar to %U,Walter Dörwald2007-06-113-44/+66
* Simplify error formatting and type_repr().Walter Dörwald2007-06-111-8/+4
* Simplify error formatting.Walter Dörwald2007-06-111-10/+10