summaryrefslogtreecommitdiffstats
path: root/Objects/abstract.c
Commit message (Expand)AuthorAgeFilesLines
* 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
* Merged revisions 55631-55794 via svnmerge fromGuido van Rossum2007-06-061-2/+4
* Merged revisions 55588-55630 via svnmerge fromGuido van Rossum2007-05-291-1/+3
* Merged revisions 55545-55587 via svnmerge fromGuido van Rossum2007-05-251-2/+38
* Get rid of all #ifdef Py_USING_UNICODE (it is always present now).Guido van Rossum2007-05-031-2/+0
* Remove the deprecated and useless "pend" argument fromGeorg Brandl2007-03-181-1/+1
* Don't confound Neil S on b"a"[0] = b"b".Guido van Rossum2007-02-261-2/+2
* These comments aren't relevant for 3k. They were to support modules compiledNeal Norwitz2007-02-251-4/+0
* Merged revisions 53623-53858 via svnmerge fromThomas Wouters2007-02-231-0/+2
* - PEP 3106: dict.iterkeys(), .iteritems(), .itervalues() are now gone;Guido van Rossum2007-02-111-0/+48
* Merged the int/long unification branch, by very crude means (sorry Thomas!).Guido van Rossum2007-01-141-67/+18
* Four months of trunk changes (including a few releases...)Thomas Wouters2006-12-131-8/+6
* Merge current trunk into p3yk. This includes the PyNumber_Index API change,Thomas Wouters2006-08-211-19/+83
* Get rid of most of the rest of coerce (slot is still there for now).Neal Norwitz2006-08-211-39/+4
* Completely get rid of PyClass and PyInstance.Guido van Rossum2006-08-171-5/+0
* Merged revisions 46753-51188 via svnmerge fromThomas Wouters2006-08-111-39/+43
* Get rid of most of the flags (in tp_flags) that keep track of variousGuido van Rossum2006-07-271-115/+20
* Merge the rest of the trunk.Thomas Wouters2006-06-081-1/+2
* Merge p3yk branch with the trunk up to revision 45595. This breaks a fairThomas Wouters2006-04-211-50/+88
* Get rid of remnants of integer divisionNeal Norwitz2006-03-241-2/+0
* Checkpoint. 218 tests are okay; 53 are failing. Done so far:Guido van Rossum2006-03-151-12/+2
* Checking in the code for PEP 357.Guido van Rossum2006-03-071-44/+32
* Change some sequnce APIs to use Py_ssize_t.Neal Norwitz2006-03-041-5/+9
* Revert backwards-incompatible const changes.Martin v. Löwis2006-02-271-1/+1
* Use Py_ssize_t for counts and sizes.Martin v. Löwis2006-02-161-2/+2
* Merge ssize_t branch.Martin v. Löwis2006-02-151-43/+43
* Renamed _length_cue() to __length_hint__(). See:Armin Rigo2006-02-111-3/+3
* Remove some shadowed variablesNeal Norwitz2006-01-081-1/+1
* SF patch #1390657:Armin Rigo2005-12-291-6/+45
* Convert iterator __len__() methods to a private API.Raymond Hettinger2005-09-241-1/+26
* SF bug #1242657: list(obj) can swallow KeyboardInterruptRaymond Hettinger2005-08-211-0/+5
* Fix:Michael W. Hudson2005-07-121-8/+13
* Make subclasses of int, long, complex, float, and unicode perform typeBrett Cannon2005-04-261-47/+37
* Small boost to PySequence_Fast(). Lists build faster than tuples forRaymond Hettinger2004-12-181-1/+1
* Add missing decref.Raymond Hettinger2004-12-161-0/+1