| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Correct some return value information. | Fred Drake | 2002-08-27 | 1 | -2/+2 |
| | | |||||
| * | Add documentation for PyObject_RichCompare() and PyObject_RichCompareBool(), | Fred Drake | 2002-06-13 | 1 | -0/+42 |
| | | | | | | constributed by David Abrahams. This closes SF patch #568081. | ||||
| * | Document PyType_IS_GC(). | Fred Drake | 2002-04-10 | 1 | -1/+9 |
| | | | | | Update description of PyType_Check(). | ||||
| * | Add the PyObject_As*Buffer() functions that apply, now that the docs have been | Fred Drake | 2002-04-04 | 1 | -0/+37 |
| | | | | | corrected and I'm dealing with them anyway. | ||||
| * | Add a note that Py_None needs the same reference count treatment as any | Fred Drake | 2002-03-12 | 1 | -1/+2 |
| | | | | | | other PyObject *. This closes SF bug #494007. | ||||
| * | Document that PyString_FromString() cannot take NULL as a parameter. | Fred Drake | 2001-12-06 | 1 | -1/+2 |
| | | | | | This closes SF bug #489872. | ||||
| * | Fix the markup of the caret charater in a couple of places; LaTeX's | Fred Drake | 2001-07-14 | 1 | -2/+2 |
| | | | | | | | special character bite us again. ;-( This fixes SF bug #440911. | ||||
| * | Move the section on concrete numeric objects before the section on | Fred Drake | 2001-07-11 | 1 | -249/+249 |
| | | | | | | | | | | concrete sequence objects, since their API is simpler. This is in response to a comment in SF bug #440037. (Does this really belong in the bugfix release? Yes: this is a readability bug, and those are important in the documentation.) | ||||
| * | Corrected the refcount information for PyList_SET_ITEM(). | Fred Drake | 2001-07-10 | 1 | -1/+1 |
| | | |||||
| * | Document PyObject_New(), PyObject_NewVar(), PyObject_Init(), | Fred Drake | 2001-07-10 | 1 | -24/+97 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PyObject_InitVar(), PyObject_Del(), PyObject_NEW(), PyObject_NEW_VAR(), and PyObject_DEL(). Add notes to PyMem_Malloc() and PyMem_New() about the memory buffers not being initialized. This fixes SF bug #439012. Added explicit return value information for PyList_SetItem(), PyDict_SetItem(), and PyDict_SetItemString(). Corrected return type for PyList_SET_ITEM(). Fixed index entries in the descriptions of PyLong_AsLong() and PyLong_AsUnignedLong(). This fixes the API manual portion of SF bug #440037. Note that the headers properly declare everything as 'extern "C"' for C++ users. Document _Py_NoneStruct. Added links to the Extending & Embedding manual for PyArg_ParseTuple() and PyArg_ParseTupleAndKeywords(). Added note that PyArg_Parse() should not be used in new code. Fix up a few style nits -- avoid "e.g." and "i.e." -- these make translation more difficult, as well as reading the English more difficult for non-native speakers. | ||||
| * | Fix for SF bug #436525, reported by Greg Kochanski: | Thomas Wouters | 2001-07-09 | 1 | -2/+2 |
| | | | | | | | The block/unblock thread macros are called 'Py_BLOCK_THREADS' and 'Py_UNBLOCK_THREADS', not 'Py_BEGIN_BLOCK_THREADS' and 'Py_BEGIN_UNBLOCK_THREADS'. | ||||
| * | Added documentation for PyErr_SetFromErrnoWithFilename(). | Fred Drake | 2001-06-21 | 1 | -0/+10 |
| | | |||||
| * | Adjust the documents so that the copyright is at the front of the documents | Fred Drake | 2001-06-21 | 1 | -0/+3 |
| | | | | | and the license statements are at the end. This is less annoying to readers. | ||||
| * | Explained more differences between PyList_SetItem() and PyList_SET_ITEM(). | Fred Drake | 2001-06-03 | 1 | -2/+7 |
| | | | | | | | | In particular, the affect on existing list content was not sufficiently explained. This closes SF bug #429554. | ||||
| * | Users of PySequence_GET_FAST() should get the length of the sequence using | Fred Drake | 2001-05-29 | 1 | -1/+1 |
| | | | | | | | | PySequence_Size(), not PyObject_Size(): the later considers the mapping methods as well as the sequence methods, which is not needed here. Either should be equally fast in this case, but PySequence_Size() offers a better conceptual match. | ||||
| * | Add documentation for Py_Main() and PyThreadState_GetDict(). | Fred Drake | 2001-05-21 | 1 | -0/+21 |
| | | |||||
| * | Typo: "that" --> "than" | Fred Drake | 2001-05-21 | 1 | -1/+1 |
| | | | | | This closes SF bug #425320. | ||||
| * | Michael Hudson: | Fred Drake | 2001-04-13 | 1 | -1/+23 |
| | | | | | | | | Update docs for PyDict_Next() based on the most recent changes to the dictionary code. This closes SF patch #409864. | ||||
| * | Work around the conversion of ">>" and "<<" to guillemets. Reported by Ping. | Fred Drake | 2001-04-13 | 1 | -4/+4 |
| | | |||||
| * | Correct the documentation for getreadbufferproc and getwritebufferproc. | Greg Stein | 2001-04-07 | 1 | -5/+6 |
| | | | | | Fixes bug #233308 from Travis Oliphant. | ||||
| * | Document PySequence_Size(), and describe PySequence_Length() as simply an | Fred Drake | 2001-04-04 | 1 | -1/+5 |
| | | | | | alternate name for the same function. | ||||
| * | Added documentation for PyObject_IsInstance() and PyObject_IsSubclass(). | Fred Drake | 2001-03-28 | 1 | -0/+36 |
| | | |||||
| * | Strengthen the constraints on calling PyObject_GC_Fini(). | Fred Drake | 2001-03-23 | 1 | -0/+5 |
| | | |||||
| * | Be more clear about the specific rules for supporting the cyclic GC in an | Fred Drake | 2001-03-22 | 1 | -4/+126 |
| | | | | | | | | extension object. Also included an example showing exactly what needs to be done and nothing else. This closes SF bug #228591. | ||||
| * | Integrated an expanded version of some text from Neil Schemenauer about | Fred Drake | 2001-03-21 | 1 | -3/+85 |
| | | | | | | | | supporting cyclic garbage collection. (This is not all of it, but I'm taking a break!) Also fixed some markup nits. | ||||
| * | Finally fill in the documentation for the PyDict_Next() function. It is | Fred Drake | 2001-03-16 | 1 | -2/+20 |
| | | | | | | | different enough to actually require an explanation. ;-) Fix a couple of PyDictObject* types that should be PyObject* types. | ||||
| * | Document PyErr_WarnExplicit(). | Guido van Rossum | 2001-02-28 | 1 | -0/+9 |
| | | |||||
| * | PyTuple_*() functions take PyObject* parameters, not PyTupleObject* values. | Fred Drake | 2001-02-12 | 1 | -7/+6 |
| | | | | | This closes SF bug #131304. | ||||
| * | Remove an now-false statement about there being only one type flag | Fred Drake | 2001-02-03 | 1 | -3/+1 |
| | | | | | defined. | ||||
| * | Document the PyInstance_*() functions and data. | Fred Drake | 2001-01-28 | 2 | -2/+39 |
| | | |||||
| * | Fixed a bunch of typos caught by Gilles Civario. | Fred Drake | 2001-01-19 | 1 | -17/+20 |
| | | |||||
| * | Undoing the whitespace patches which sneaked into the earlier patch. | Marc-André Lemburg | 2001-01-17 | 1 | -6/+6 |
| | | |||||
| * | This patch adds a new builtin unistr() which behaves like str() | Marc-André Lemburg | 2001-01-17 | 1 | -6/+14 |
| | | | | | | | | | | | except that it always returns Unicode objects. A new C API PyObject_Unicode() is also provided. This closes patch #101664. Written by Marc-Andre Lemburg. Copyright assigned to Guido van Rossum. | ||||
| * | The Python/C API deals in PyObject*, not PyDictObject*. | Fred Drake | 2001-01-08 | 1 | -12/+12 |
| | | |||||
| * | Markup nit: Command line options should be marked with \programopt. | Fred Drake | 2001-01-04 | 1 | -2/+2 |
| | | |||||
| * | Oops. The value "0 or +1" for the category argument of PyErr_Warn() | Guido van Rossum | 2000-12-19 | 1 | -1/+1 |
| | | | | | | | doesn't work. Make it 0. (Although it really *should* be 0 or +1 -- the refcount is incremented when it is raised as an exception, but not otherwise.) | ||||
| * | Document Pyerr_Warn(). | Guido van Rossum | 2000-12-19 | 1 | -0/+11 |
| | | | | | | Add an XXX comment at the beginning expressing disappointment over the confusing way refcount behavior of arguments is documented. | ||||
| * | Document Pyerr_Warn(). | Guido van Rossum | 2000-12-19 | 1 | -0/+34 |
| | | |||||
| * | In the first discussion showing how to handle exceptions from C, make the | Fred Drake | 2000-11-29 | 1 | -7/+11 |
| | | | | | | | | | Python equivalent actually equivalent to the C code. Also, in the C code, place the "goto" statements on a line by themselves for better visibility of statements that affect control flow. This closes bug #123398. | ||||
| * | Added documentation for the Py_InitModule*() family of functions. | Fred Drake | 2000-11-28 | 2 | -1/+47 |
| | | |||||
| * | Updates to reflect pending changes to the XML conversion process. | Fred Drake | 2000-11-22 | 1 | -1/+1 |
| | | |||||
| * | Added exception to the rule that the buffer returned by PyString_AsString() | Fred Drake | 2000-10-23 | 1 | -4/+17 |
| | | | | | | | | | | | | | and PyString_AsStringAndSize() for strings that were just created using PyString_FromStringAndSize(NULL, n). This closes bug #117377. Added warning about passing NULL to the concrete object functions; many of them use the appropriate Py<Type>_Check() test, but do not check for NULL. "de-allocated" --> "deallocated" | ||||
| * | For PyErr_Format(), note that the exception parameter can be a string or | Fred Drake | 2000-10-14 | 1 | -2/+2 |
| | | | | | | class, but not an instance (since an instance will be created using the formatted message string as the constructor parameter). | ||||
| * | Fix a couple of places where the descriptions of *_GET_SIZE() macros said | Fred Drake | 2000-10-07 | 1 | -2/+2 |
| | | | | | | | they were similar to *_GetSize(); should be similar to *_Size(). Error noted by William Park <parkw@better.net>. | ||||
| * | The _PyTuple_Resize() last_is_sticky flag must now always be false. | Neil Schemenauer | 2000-10-05 | 1 | -6/+6 |
| | | |||||
| * | Reversely --> Conversely | Fred Drake | 2000-09-29 | 1 | -2/+2 |
| | | | | | This closes SourceForge bug #115673. | ||||
| * | Note that including Python.h includes limits.h when available. | Fred Drake | 2000-09-26 | 1 | -2/+2 |
| | | |||||
| * | Added documentation for the new PyModule_*() convenience functions. | Fred Drake | 2000-09-23 | 1 | -0/+26 |
| | | | | | This closes SourceForge patch #101233. | ||||
| * | Added refcount information for the *_InPlace*() API series. | Fred Drake | 2000-09-22 | 1 | -0/+53 |
| | | | | | This closes SourceForge bug #114287. | ||||
| * | PyNumber_Coerce() returns an int, not a PyObject *. | Fred Drake | 2000-09-22 | 1 | -1/+1 |
| | | |||||
