summaryrefslogtreecommitdiffstats
path: root/Doc/api
Commit message (Collapse)AuthorAgeFilesLines
* Patch #702933: Undocument PyObject_NEW, PyObject_NEW_VAR,Martin v. Löwis2006-04-142-20/+1
| | | | and PyObject_DEL.
* Stop claiming that Py_Finalize releases all memory.Martin v. Löwis2006-04-131-1/+4
| | | | Fixes part of #1445210.
* Patch #837242: id() for large ptr should return a long.Martin v. Löwis2006-04-101-1/+5
|
* Bug #1464658: make clear that PyList_GetItem doesn't take negative indices.Georg Brandl2006-04-061-2/+3
|
* Fix typos.Walter Dörwald2006-03-311-2/+2
|
* SF patch #1458476 with modifications based on discussions in python-dev. ThisBarry Warsaw2006-03-301-4/+3
| | | | | | adds the following API calls: PySet_Clear(), _PySet_Next(), and _PySet_Update(). The latter two are considered non-public. Tests and documentation (for the public API) are included.
* fill in refcount information for APIs first documented in Python 2.5Fred Drake2006-03-301-0/+9
|
* merge revision 43437 from the release24-maint branch:Fred Drake2006-03-302-0/+115
| | | | | - update the refcount information (late, but not a bad thing to do...) - clarify that PyGen_New() steals a reference
* Document change made to number of preallocated integers.Georg Brandl2006-03-271-1/+1
|
* Show an example of calling a named set method.Raymond Hettinger2006-03-201-2/+2
|
* Move version added tag from PyObject_Length/Size to PyNumber_Index.Neal Norwitz2006-03-081-1/+1
|
* Checking in the code for PEP 357.Guido van Rossum2006-03-071-0/+5
| | | | | | This was mostly written by Travis Oliphant. I've inspected it all; Neal Norwitz and MvL have also looked at it (in an earlier incarnation).
* Document PEP 352 changes. Also added GeneratorExit.Brett Cannon2006-03-011-2/+6
|
* Fix warning that texcheck complained about.Martin v. Löwis2006-03-011-1/+1
|
* markup glitch (spotted by George Yoshida)Fredrik Lundh2006-03-011-1/+1
|
* Document new Py_ssize_t API.Martin v. Löwis2006-03-012-1/+27
|
* Make documentation match the implementation.Martin v. Löwis2006-03-016-167/+168
|
* Fix casing of function names.Georg Brandl2006-02-221-3/+3
|
* fix typoGeorg Brandl2006-02-211-1/+1
|
* Bug #1013800: document PyFunction_* functionsGeorg Brandl2006-02-202-11/+112
|
* Patch #1415507: clarify docs on reference stealingGeorg Brandl2006-02-181-3/+13
|
* Bug #1432350: arrayobject should use PyObject_VAR_HEADGeorg Brandl2006-02-171-1/+1
|
* SF#1383115Fredrik Lundh2005-12-181-0/+5
| | | | added refcount information for PyObject_Call
* Add versionadded infoNeal Norwitz2005-12-181-0/+1
|
* Expose Subversion revision number (calculated via "svnversion .") to Python.Barry Warsaw2005-12-181-0/+6
| | | | | | | Add C API function Py_GetBuildNumber(), add it to the interactive prompt banner (i.e. Py_GetBuildInfo()), and add it as the sys.build_number attribute. The build number is a string instead of an int because it may contain a trailing 'M' if there are local modifications.
* bug #1281408: make Py_BuildValue work with unsigned longs and long longsGeorg Brandl2005-11-241-2/+24
|
* Remove .cvsignore files, as they live in svn:ignoreMartin v. Löwis2005-10-301-3/+0
| | | | properties now.
* SF bug #1323739, C API doc for PySequence_Tuple duplicatedNeal Norwitz2005-10-121-9/+5
|
* Clarify the docs for Py_UNICODE.Marc-André Lemburg2005-10-101-6/+16
|
* Part of SF patch #1313939: Speedup charmap decoding by extendingWalter Dörwald2005-10-061-1/+6
| | | | | | | PyUnicode_DecodeCharmap() the accept a unicode string as the mapping argument which is used as a mapping table. This code isn't used by any of the codecs yet.
* bug [ 1306449 ] PyString_AsStringAndSize() return value documented wrongGeorg Brandl2005-09-281-2/+2
|
* fix typoGeorg Brandl2005-09-151-1/+1
|
* - Correct PyBool_FromLong's return type and its description.Georg Brandl2005-09-031-251/+251
| | | | - Unify function description mode ("Return X" vs "Returns X")
* Fix PySet_Pop() notes.Raymond Hettinger2005-08-211-2/+1
|
* Add info about the set API.Raymond Hettinger2005-08-201-0/+19
|
* Expand the API notes.Raymond Hettinger2005-08-171-4/+5
|
* Note that the PyNumber protocol can access most set methods directly.Raymond Hettinger2005-08-171-3/+10
|
* Numerous fix-ups to C API and docs. Added tests for C API.Raymond Hettinger2005-08-161-15/+21
|
* Add a C API for sets and frozensets.Raymond Hettinger2005-08-161-0/+125
|
* bug [ 1061920 ] "k" specifier in PyArg_ParseTuple incomplete documentatedGeorg Brandl2005-07-171-2/+2
|
* Add a(nother) warning about mixing Py_NewInterpreter and theMichael W. Hudson2005-06-201-0/+6
| | | | PyGILState_* functions.
* fix some silly whitespace stuff (must have hit M-q or something?)Michael W. Hudson2005-06-201-13/+13
|
* Fix grammar (it's -> its).Neil Schemenauer2005-06-182-2/+2
|
* Function signatures for tp_descr_get and tp_descr_set.Thomas Heller2005-03-241-1/+15
|
* Fix name for PyDateTime_FromDateAndTime.Brett Cannon2005-02-171-1/+1
| | | | Closes bug #1124278.
* Update references specifying "Macintosh" to mean OS X semantics and not Mac OSBrett Cannon2005-02-132-5/+4
| | | | | | 9. Applies patch #1095802. Thanks Jack Jansen.
* Clean up discussion of new C thread idiomFred Drake2005-01-191-13/+11
| | | | (closes SF patch #1031233; modified)
* SF Patch #1093896: miscellaneous doc typosRaymond Hettinger2005-01-012-2/+2
|
* SF bug #1082944: Incorrect docs for PyUnicode_TailMatchRaymond Hettinger2004-12-101-1/+2
| | | | | * Note correct return type is int. * Note that -1 returned on failure.
* Correct the handling of 0-termination of PyUnicode_AsWideChar()Marc-André Lemburg2004-11-221-3/+7
| | | | | | | | and its usage in PyLocale_strcoll(). Clarify the documentation on this. Thanks to Andreas Degert for pointing this out.