| Commit message (Expand) | Author | Age | Files | Lines |
* | 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 patch changes the way the string .encode() method works slightly | Marc-André Lemburg | 2001-05-15 | 1 | -7/+21 |
|
|
* | Hmm... better add a version annotation for the Iterator Protocol section. | Fred Drake | 2001-05-07 | 1 | -0/+2 |
|
|
* | Added documentation for PyIter_Check() and PyIter_Next(). | Fred Drake | 2001-05-07 | 1 | -1/+39 |
|
|
* | This patch originated from an idea by Martin v. Loewis who submitted a | Marc-André Lemburg | 2001-04-23 | 1 | -1/+3 |
|
|
* | Michael Hudson: | Fred Drake | 2001-04-13 | 1 | -1/+23 |
|
|
* | 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 |
|
|
* | Document PySequence_Size(), and describe PySequence_Length() as simply an | Fred Drake | 2001-04-04 | 1 | -1/+5 |
|
|
* | 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 |
|
|
* | Integrated an expanded version of some text from Neil Schemenauer about | Fred Drake | 2001-03-21 | 1 | -3/+85 |
|
|
* | Finally fill in the documentation for the PyDict_Next() function. It is | Fred Drake | 2001-03-16 | 1 | -2/+20 |
|
|
* | 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 |
|
|
* | Remove an now-false statement about there being only one type flag | Fred Drake | 2001-02-03 | 1 | -3/+1 |
|
|
* | Document the PyInstance_*() functions and data. | Fred Drake | 2001-01-28 | 1 | -2/+30 |
|
|
* | 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 |
|
|
* | Markup nit: Command line options should be marked with \programopt. | Fred Drake | 2001-01-04 | 1 | -2/+2 |
|
|
* | 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 |
|
|
* | Added documentation for the Py_InitModule*() family of functions. | Fred Drake | 2000-11-28 | 1 | -1/+31 |
|
|
* | Added exception to the rule that the buffer returned by PyString_AsString() | Fred Drake | 2000-10-23 | 1 | -4/+17 |
|
|
* | For PyErr_Format(), note that the exception parameter can be a string or | Fred Drake | 2000-10-14 | 1 | -2/+2 |
|
|
* | Fix a couple of places where the descriptions of *_GET_SIZE() macros said | Fred Drake | 2000-10-07 | 1 | -2/+2 |
|
|
* | 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 |
|
|
* | 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 |
|
|
* | PyNumber_Coerce() returns an int, not a PyObject *. | Fred Drake | 2000-09-22 | 1 | -1/+1 |
|
|
* | Include the new text on reporting bugs in a few useful places. | Fred Drake | 2000-09-21 | 1 | -0/+4 |
|
|
* | This patch adds a new Python C API called PyString_AsStringAndSize() | Marc-André Lemburg | 2000-09-19 | 1 | -0/+17 |
|
|
* | Document new APIs PyOS_getsig() and PyOS_setsig(). | Guido van Rossum | 2000-09-16 | 1 | -0/+15 |
|
|
* | Use \shortversion in a number of places. | Fred Drake | 2000-09-14 | 1 | -6/+5 |
|
|
* | Avoid reference to specific versions of Python where possible. | Fred Drake | 2000-09-14 | 1 | -3/+3 |
|
|
* | Thomas Wouters <thomas@xs4all.net>: | Fred Drake | 2000-09-12 | 1 | -7/+106 |
|
|
* | Vladimir Marangozov <Vladimir.Marangozov@inrialpes.fr>: | Fred Drake | 2000-09-12 | 1 | -53/+52 |
|
|
* | Added documentation for PySequence_Fast() and PySequence_Fast_GET_ITEM(). | Fred Drake | 2000-09-12 | 1 | -0/+17 |
|
|
* | Update documentation for PyErr_Format, because the function has changed. | Moshe Zadka | 2000-09-01 | 1 | -9/+19 |
|
|
* | Document PyImport_AppendInittab(), PyImport_ExtendInittab(), and | Fred Drake | 2000-09-01 | 1 | -1/+39 |
|
|
* | refactor __del__ exception handler into PyErr_WriteUnraisable | Jeremy Hylton | 2000-09-01 | 1 | -0/+11 |
|
|
* | Document PyOS_CheckStack(). | Fred Drake | 2000-08-31 | 1 | -2/+12 |
|
|
* | In the section on the "Very High Level Layer", address concerns brought up | Fred Drake | 2000-08-14 | 1 | -0/+9 |
|
|
* | PyRun_InteractiveOne(), | Fred Drake | 2000-08-11 | 1 | -2/+20 |
|
|
* | ANY becomes void, to reflect the requirement for ANSI C. | Fred Drake | 2000-08-11 | 1 | -18/+11 |
|
|
* | Document PyObject_AsFileDescriptor | Andrew M. Kuchling | 2000-07-13 | 1 | -0/+7 |
|
|