Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Add more text from Guido on the type structure fields. | Fred Drake | 2002-04-16 | 1 | -23/+442 |
| | | | | Small additional changes. | ||||
* | added small clarification to the descriptions of encode() and decode() | Skip Montanaro | 2002-04-16 | 1 | -2/+6 |
| | |||||
* | Replace the simpleminded string.find with a re.search looking only for | Thomas Heller | 2002-04-16 | 1 | -2/+2 |
| | | | | | | | full words. Before that, something like 'PyObject_Call' was missed because 'PyObject_CallFunction' was found. Passes PyChecker now. | ||||
* | Remove repeated index entry; adds nothing different. | Fred Drake | 2002-04-16 | 1 | -2/+1 |
| | | | | Closes SF bug #518985. | ||||
* | Add documentation for PyObject_Call(). | Fred Drake | 2002-04-15 | 1 | -0/+16 |
| | | | | | Note that PyObject_Size() is a synonym for PyObject_Length(). This closes SF patch #544330 (contributed by Thomas Heller). | ||||
* | Separate out a \cfuncline macro from the cfuncdesc environment. | Fred Drake | 2002-04-15 | 2 | -9/+25 |
| | | | | | This matches many other of the *desc environments, and is useful when multiple functions share a description. | ||||
* | Document the cmemberdesc environment. | Fred Drake | 2002-04-15 | 1 | -0/+11 |
| | |||||
* | Better documentation for GetArgv() and the ProgressBar type. | Fred Drake | 2002-04-15 | 1 | -40/+157 |
| | | | | | Back-porting to release22-maint. This closes SF patch #496705. | ||||
* | Be consistent in presenting the signatures. | Fred Drake | 2002-04-15 | 1 | -1/+1 |
| | |||||
* | Add docs for os.fchdir(). | Fred Drake | 2002-04-15 | 1 | -0/+9 |
| | |||||
* | Generate the right annotations in the index entries. | Fred Drake | 2002-04-15 | 1 | -2/+2 |
| | | | | Thanks to Thomas Heller for the sharp eye. | ||||
* | Integrated more text from Guido. | Fred Drake | 2002-04-15 | 1 | -2/+359 |
| | |||||
* | Move the listing of the type structure, since both the C API reference and | Fred Drake | 2002-04-15 | 1 | -0/+0 |
| | | | | the Extending & Embedding manual use it. | ||||
* | Clean up the application of style to verbatim text. | Fred Drake | 2002-04-15 | 3 | -8/+10 |
| | | | | | | | This moves styling to the stylesheet; the use of <dl> structures to control style sometimes produced improper indentation of subsequent text in many browsers when the text was already part of the <dl> structure (as in a function or class description). | ||||
* | Add support for \cmemberline and the cmemberdesc environment. | Fred Drake | 2002-04-15 | 1 | -0/+24 |
| | |||||
* | Add item | Andrew M. Kuchling | 2002-04-15 | 1 | -0/+2 |
| | |||||
* | Apply the second version of SF patch http://www.python.org/sf/536241 | Walter Dörwald | 2002-04-15 | 1 | -0/+6 |
| | | | | | | | | | | Add a method zfill to str, unicode and UserString and change Lib/string.py accordingly. This activates the zfill version in unicodeobject.c that was commented out and implements the same in stringobject.c. It also adds the test for unicode support in Lib/string.py back in and uses repr() instead() of str() (as it was before Lib/string.py 1.62) | ||||
* | posix.mknod() and {}.pop() were added | Neal Norwitz | 2002-04-15 | 1 | -1/+2 |
| | |||||
* | Add items | Andrew M. Kuchling | 2002-04-15 | 1 | -0/+20 |
| | |||||
* | Patch #543447: Add posix.mknod. | Martin v. Löwis | 2002-04-14 | 1 | -0/+11 |
| | |||||
* | Document the optional argument to the .strip(), .rstrip(), .strip() string | Fred Drake | 2002-04-13 | 1 | -8/+20 |
| | | | | | methods. Part of SF feature #444708. | ||||
* | Additional support for describing C structure members. | Fred Drake | 2002-04-12 | 1 | -0/+11 |
| | |||||
* | Integrate a bunch of new text from Guido. | Fred Drake | 2002-04-12 | 1 | -6/+262 |
| | |||||
* | BDFL agreed with Tim: rehabilitate randint(). | Fred Drake | 2002-04-12 | 1 | -1/+0 |
| | |||||
* | Update the type of the tp_free slot. | Fred Drake | 2002-04-12 | 1 | -1/+1 |
| | |||||
* | Warn people away from PyModule_GetDict(), but not too strongly. | Fred Drake | 2002-04-12 | 1 | -0/+3 |
| | | | | | | | (The real issue is whether modules can benefit from an alternate implementation strategy rather than using a dictionary. We should migrate away from direct dictionary manipulation to allow more room for Jeremy to flex the implementation with changes in globals lookup.) | ||||
* | Do not use PyModule_GetDict(). | Fred Drake | 2002-04-12 | 1 | -23/+27 |
| | | | | | Clean up the example of exporting a C-callable API from an extension module. Add a hyperlink to a related section in the Python/C API reference. | ||||
* | Change example of retrieving & calling a Python function to not use | Fred Drake | 2002-04-12 | 1 | -12/+9 |
| | | | | | PyModule_GetDict(), which is also more flexible: it does not assume that the "module" is a real module. | ||||
* | Change the type of the tp_dealloc back to what it really is. | Fred Drake | 2002-04-12 | 1 | -2/+2 |
| | | | | Change a section title to fit in better. | ||||
* | Modernize the minimal example of an extension type. | Fred Drake | 2002-04-12 | 1 | -7/+15 |
| | |||||
* | Add a (very) simple description of PyType_Ready(). | Fred Drake | 2002-04-12 | 1 | -0/+4 |
| | |||||
* | Update the type of tp_dealloc. | Fred Drake | 2002-04-12 | 1 | -1/+1 |
| | |||||
* | Add Raymond Hettinger's d.pop(). See SF patch 539949. | Guido van Rossum | 2002-04-12 | 1 | -0/+3 |
| | |||||
* | Document __unicode__. Fixes #541245. | Martin v. Löwis | 2002-04-11 | 1 | -0/+7 |
| | |||||
* | Explain octal escapes. Fixes #542226. | Martin v. Löwis | 2002-04-11 | 1 | -5/+3 |
| | |||||
* | Add a name | Andrew M. Kuchling | 2002-04-10 | 1 | -1/+1 |
| | |||||
* | Remove mention of 'pre' module | Andrew M. Kuchling | 2002-04-10 | 1 | -9/+0 |
| | | | | (2.2 bugfix candidate?) | ||||
* | Document PyType_CheckExact(), PyType_IS_GC(). | Fred Drake | 2002-04-10 | 1 | -1/+16 |
| | | | | Update description of PyType_Check(). | ||||
* | document all the valid encoding values | Skip Montanaro | 2002-04-10 | 1 | -1/+4 |
| | |||||
* | When adding a name to the table of macros and environments, make sure it | Fred Drake | 2002-04-10 | 1 | -1/+4 |
| | | | | | is not already present. If it is, raise an exception, since that should not happen in a well-defined conversion. | ||||
* | Added support for \csimplemacro and csimplemacrodesc. | Fred Drake | 2002-04-10 | 1 | -0/+6 |
| | |||||
* | Started filling in the information about some of the basic types and macros | Fred Drake | 2002-04-09 | 1 | -2/+69 |
| | | | | used to define Python objects. | ||||
* | Update to use the new \csimplemacro macro | Fred Drake | 2002-04-09 | 2 | -22/+24 |
| | |||||
* | Document the \csimplemacro macro and the csimplemacrodesc environment. | Fred Drake | 2002-04-09 | 1 | -0/+20 |
| | |||||
* | Add \csimplemacro to parallel the csimplemacrodesc environment. | Fred Drake | 2002-04-09 | 1 | -1/+2 |
| | | | | Fix a typo in the comments for csimplemacrodesc. | ||||
* | Update docs for bool changes by Guido around April 6 | Neal Norwitz | 2002-04-09 | 6 | -16/+16 |
| | |||||
* | Ignore an output directory for intermediates here as well. | Fred Drake | 2002-04-09 | 1 | -0/+1 |
| | |||||
* | Fix typo: coverted --> converted. Reported by Francois Pinard. | Fred Drake | 2002-04-09 | 1 | -1/+1 |
| | |||||
* | Update the table of releases. | Fred Drake | 2002-04-08 | 1 | -0/+3 |
| | |||||
* | Patch #512005: getrusage() returns struct-like object. | Martin v. Löwis | 2002-04-08 | 1 | -33/+39 |
| |