summaryrefslogtreecommitdiff
path: root/Include/abstract.h
Commit message (Expand)AuthorAgeFilesLines
* Issue #25701: Document that some C APIs can both set and delete itemsMartin Panter2016-11-301-12/+12
* Issue #25523: Correct "a" article to "an" articleMartin Panter2015-11-021-1/+1
* use imperativeBenjamin Peterson2014-04-081-1/+1
* PySequence_Fast generally returns a list (#16305)Benjamin Peterson2014-04-081-1/+1
* #11565: Fix several typos. Patch by Piotr Kasprzyk.Ezio Melotti2011-03-161-2/+2
* Merged revisions 84391 via svnmerge fromAntoine Pitrou2010-09-011-0/+7
* Untabify C files. Will watch buildbots.Antoine Pitrou2010-05-091-474/+474
* Issue 1242657: list(obj) can swallow KeyboardInterrupt.Raymond Hettinger2009-02-021-1/+1
* #3720: Interpreter crashes when an evil iterator removes its own next function.Amaury Forgeot d'Arc2009-01-121-1/+2
* Issue #2534: speed up isinstance() and issubclass() by 50-70%, so as toAntoine Pitrou2008-08-261-0/+5
* Issue #3139: Make buffer-interface thread-safe wrt. PyArg_ParseTuple,Martin v. Löwis2008-08-121-19/+6
* Finish backporting new buffer API to Python 2.6. Left to do: memoryview obje...Travis E. Oliphant2008-03-181-3/+4
* Add necessary headers to back-port new buffer protocol to Python 2.6Travis E. Oliphant2008-03-171-0/+103
* Backport of PEP 3101, Advanced String Formatting, from py3k.Eric Smith2008-02-171-0/+7
* Forgot to modify header file in r60707.Eric Smith2008-02-101-0/+9
* Make int() and long() fall back to __trunc__(). See issue 2002.Jeffrey Yasskin2008-02-041-0/+13
* #1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFC...Christian Heimes2007-12-191-1/+1
* Fix Issue 1045.Raymond Hettinger2007-12-061-17/+4
* PEP 3123: Provide forward compatibility with Python 3.0, while keepingMartin v. Löwis2007-07-211-1/+1
* Patch #1580872: Remove duplicate declaration of PyCallable_Check.Martin v. Löwis2006-10-221-1/+2
* Patch #1538606, Patch to fix __index__() clipping.Neal Norwitz2006-08-121-3/+17
* C++ compilation cleanup: Migrate declaration ofSkip Montanaro2006-04-181-0/+5
* Make Py_BuildValue, PyObject_CallFunction andMartin v. Löwis2006-04-141-0/+5
* Checking in the code for PEP 357.Guido van Rossum2006-03-071-0/+8
* Change some sequnce APIs to use Py_ssize_t.Neal Norwitz2006-03-041-4/+4
* Merge ssize_t branch.Martin v. Löwis2006-02-151-18/+18
* Renamed _length_cue() to __length_hint__(). See:Armin Rigo2006-02-111-5/+10
* Convert iterator __len__() methods to a private API.Raymond Hettinger2005-09-241-0/+15
* Make PySequence_Fast_ITEMS public. (Thanks Skip.)Raymond Hettinger2004-03-121-1/+1
* Use a new macro, PySequence_Fast_ITEMS to factor out code common toRaymond Hettinger2004-03-121-0/+6
* Fix a bunch of typos in documentation, docstrings and comments.Walter Dörwald2003-10-201-1/+1
* Fix broken API descriptions in comments.Fred Drake2003-05-121-8/+7
* Fix spelling and grammar.Raymond Hettinger2003-02-281-5/+5
* James Henstridge pointed out a misleading comment.Michael W. Hudson2002-11-251-10/+6
* Excise DL_EXPORT from Include.Mark Hammond2002-08-121-86/+86
* Patch #552433: Special-case tuples. Avoid sub-type checking for lists.Martin v. Löwis2002-05-081-0/+6
* Implement PyObject_DelItemString. Fixes #498915.Martin v. Löwis2002-01-051-0/+8
* Fix SF bug [ #476852 ] Some bad macros in abstract.hJeremy Hylton2001-11-281-2/+2
* Add PyObject_CheckReadBuffer(), which returns true if its argumentJeremy Hylton2001-11-091-0/+9
* PyObject_CallFunctionObArgs() ---> PyObject_CallFunctionObjArgs()Fred Drake2001-10-281-4/+4
* Added two new functions to conveniently call functions/methods from C.Fred Drake2001-10-261-5/+23
* Generalize dictionary() to accept a sequence of 2-sequences. At theTim Peters2001-10-261-4/+8
* Generalize operator.indexOf (PySequence_Index) to work with anyTim Peters2001-09-081-8/+18
* Implement PEP 238 in its (almost) full glory.Guido van Rossum2001-08-081-0/+42
* Merge of descr-branch back into trunk.Tim Peters2001-08-021-0/+11
* Reimplement PySequence_Contains() and instance_contains(), so they workTim Peters2001-05-051-1/+11
* Generalize tuple() to work nicely with iterators.Tim Peters2001-05-051-1/+1
* Make PyIter_Next() a little smarter (wrt its knowledge of iteratorTim Peters2001-05-051-3/+2
* Mondo changes to the iterator stuff, without changing how Python codeGuido van Rossum2001-04-231-0/+13
* Iterators phase 1. This comprises:Guido van Rossum2001-04-201-0/+5