summaryrefslogtreecommitdiff
path: root/Objects/abstract.c
Commit message (Expand)AuthorAgeFilesLines
* Merged revisions 72907 via svnmerge fromBenjamin Peterson2009-05-251-2/+10
* Remove unused variables.Georg Brandl2009-05-171-2/+1
* Merged revisions 72690 via svnmerge fromBenjamin Peterson2009-05-161-16/+4
* only need to catch an TypeError hereBenjamin Peterson2009-05-091-3/+2
* Merged revisions 72518 via svnmerge fromBenjamin Peterson2009-05-091-0/+1
* Merged revisions 72508 via svnmerge fromBenjamin Peterson2009-05-091-13/+8
* Merged revisions 71607,71653,71696,71771,71786 via svnmerge fromGeorg Brandl2009-04-271-1/+1
* Merged revisions 69846 via svnmerge fromMark Dickinson2009-02-211-1/+1
* Validate that __length_hint__ returns a usable result.Raymond Hettinger2009-02-031-1/+1
* Issue 1242657: list(obj) can swallow KeyboardInterrupt.Raymond Hettinger2009-02-021-14/+19
* Issue #1717: remove the cmp builtin function, the C-API functionsMark Dickinson2009-02-011-16/+0
* Merged revisions 68560 via svnmerge fromAmaury Forgeot d'Arc2009-01-121-1/+0
* Issue #4910 (1st patch of a series): fix int() and the correspondingMark Dickinson2009-01-121-13/+1
* #3946 fix PyObject_CheckBuffer on a memoryview objectBenjamin Peterson2008-09-261-3/+3
* Fix #3651 various memory leaks when using the buffer interfaceBenjamin Peterson2008-08-271-0/+3
* Issue #2534: speed up isinstance() and issubclass() by 50-70%, so as toAntoine Pitrou2008-08-261-89/+93
* Merged revisions 65677-65678,65683 via svnmerge fromMartin v. Löwis2008-08-141-5/+6
* Merged revisions 65654 via svnmerge fromMartin v. Löwis2008-08-131-20/+22
* Merged revisions 64623,64640,64665,64687,64689-64690,64719,64721,64735,64742,...Georg Brandl2008-07-161-1/+1
* Revert 64451.Raymond Hettinger2008-06-241-4/+1
* Merge 64438: hex/oct/bin can show floats exactly.Raymond Hettinger2008-06-221-1/+4
* Remove locking from buffer protocol as-per discussion.Travis E. Oliphant2008-06-061-6/+0
* Renamed PyString to PyBytesChristian Heimes2008-05-261-3/+3
* Issue 2440: revert r62269 and r62279. These changes were made in an effort t...Trent Nelson2008-04-111-14/+2
* Fix change to PyNumber_Index() made in r62269, which incorrectly allowed floa...Trent Nelson2008-04-101-1/+1
* Issue 2440: fix the handling of %n in Python/getargs.c's convertsimple(), ext...Trent Nelson2008-04-101-2/+14
* Merged revisions 61644,61646-61647,61649-61652,61656-61658,61663,61665,61667 ...Christian Heimes2008-03-201-4/+2
* Merged revisions 61538-61540,61556,61559-61560,61563,61565,61571,61575-61576,...Christian Heimes2008-03-191-0/+5
* Fix an apparent typo. This test of the readonly boolean should have been != 0Gregory P. Smith2008-03-151-1/+1
* Fixes for shared 2.6 code that implements PEP 3101, advanced stringEric Smith2008-02-171-0/+51
* Merged revisions 60481,60485,60489-60492,60494-60496,60498-60499,60501-60503,...Christian Heimes2008-02-161-5/+25
* Merged revisions 60481,60485,60489-60492,60494-60496,60498-60499,60501-60503,...Christian Heimes2008-02-041-0/+64
* Merged revisions 60379-60382 via svnmerge fromChristian Heimes2008-01-281-2/+2
* #1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFCNT.Christian Heimes2007-12-191-1/+1
* Merged revisions 59376-59406 via svnmerge fromChristian Heimes2007-12-081-30/+38
* Fix issue #1553: An errornous __length_hint__ can make list() raise aAlexandre Vassalotti2007-12-041-2/+3
* Cleanup: Replaced most PyInt_ aliases with PyLong_ and disabled the aliases i...Christian Heimes2007-12-021-5/+5
* Merging the py3k-pep3137 branch back into the py3k branch.Guido van Rossum2007-11-061-52/+53
* Eliminate use of PyBUF_CHARACTER flag which is no longer part of the buffer i...Travis E. Oliphant2007-10-131-1/+1
* Fix problems with memoryview object. There is still more to do to finish PEP...Travis E. Oliphant2007-10-121-347/+347
* Change PyBuffer to Py_buffer to be consistent with other non-object structure...Travis E. Oliphant2007-09-231-13/+13
* Fixing the spelling of "writeable" to "writable", particularly PyBUF_WRITEABLE.Sean Reifscheider2007-09-171-4/+4
* Merged revisions 57778-58052 via svnmerge fromThomas Wouters2007-09-081-1/+5
* Remove checking redundantly for checks of PyInt and PyLong.Neal Norwitz2007-08-311-4/+3
* Remove the simple slicing API. All slicing is now done with slice objects.Thomas Wouters2007-08-301-50/+15
* Use unicode and remove support for some uses of str8.Neal Norwitz2007-08-261-7/+0
* Code review of the new buffer protocol. Mostly add questions that shouldNeal Norwitz2007-08-191-0/+4
* Merged in py3k-buffer branch to main line. All objects now use the buffer pr...Travis E. Oliphant2007-08-181-55/+408
* Merged revisions 55817-55961 via svnmerge fromGuido van Rossum2007-06-131-0/+16
* Make identifiers str (not str8) objects throughout.Martin v. Löwis2007-06-101-5/+7