summaryrefslogtreecommitdiffstats
path: root/Objects
Commit message (Expand)AuthorAgeFilesLines
* Use unicode and remove support for some uses of str8.Neal Norwitz2007-08-265-31/+15
* Use unicode and remove support for some uses of str8.Neal Norwitz2007-08-264-60/+30
* Remove assert that seems out of place. It triggers with test_string,Neal Norwitz2007-08-261-2/+0
* Use unicode and stop supporting str8Neal Norwitz2007-08-261-13/+7
* Get rid of more uses of string and use const in a few places.Neal Norwitz2007-08-261-8/+8
* Get rid of compiler warning on 64-bitNeal Norwitz2007-08-251-4/+8
* Support unicode namesNeal Norwitz2007-08-251-2/+2
* Use unicodeNeal Norwitz2007-08-252-18/+33
* Implementation of PEP 3101, Advanced String Formatting.Eric Smith2007-08-258-15/+2156
* Since PyUnicode_AsString is a public API, don't just assert, but doNeal Norwitz2007-08-251-1/+4
* Keir Mierle's set operations for dict views (keys/items only of course).Guido van Rossum2007-08-241-2/+94
* Ensure that code object names (co_name) are unicode.Neal Norwitz2007-08-241-5/+10
* Patch with Keir Mierle: add rich comparisons between dict views and sets,Guido van Rossum2007-08-241-28/+52
* Whitespace cleanup.Guido van Rossum2007-08-241-10/+10
* 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