summaryrefslogtreecommitdiffstats
path: root/Doc
Commit message (Collapse)AuthorAgeFilesLines
* Remove some false statements.Fred Drake2001-07-191-4/+2
|
* Lots of small updates, some long overdue.Fred Drake2001-07-181-24/+35
|
* Bump version number and set the date for the 2.1.1 release.Fred Drake2001-07-182-3/+3
|
* Add a more substantial example startup file for the interactive shell;Fred Drake2001-07-181-7/+44
| | | | | | | | sample startup script provided by Itamar Shtull-Trauring. This closes SF patch #410890. Add some logical markup where it was missing.
* Revise the description of time.clock() so that it correctly describes theFred Drake2001-07-161-4/+11
| | | | | | Windows version of the function as well as the Unix flavor. This fixes SF bug #441357.
* Fix the markup of the caret charater in a couple of places; LaTeX'sFred Drake2001-07-141-2/+2
| | | | | | special character bite us again. ;-( This fixes SF bug #440911.
* Add credit for a last-minute fix in the re documentation.Fred Drake2001-07-121-0/+1
|
* Fix return value for m.group() for groups not in the part of the RE thatFred Drake2001-07-121-1/+1
| | | | matched; reported by Paul Moore.
* Move the section on concrete numeric objects before the section onFred Drake2001-07-111-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.)
* Added information about the timeout parameter to the poll() method forFred Drake2001-07-111-1/+5
| | | | | | polling objects. This closes SF bug #439823. Fixed a minor markup bug.
* Add another name.Fred Drake2001-07-101-0/+1
|
* Corrected the refcount information for PyList_SET_ITEM().Fred Drake2001-07-101-1/+1
|
* Document PyObject_New(), PyObject_NewVar(), PyObject_Init(),Fred Drake2001-07-101-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.
* Added descriptions for some modules that previously did not have anyFred Drake2001-07-101-9/+26
| | | | information about them, based on comments from Jack Jansen.
* Fix for SF bug #436525, reported by Greg Kochanski:Thomas Wouters2001-07-091-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'.
* Explain the exit code for the wait() method, including a reference toFred Drake2001-07-061-1/+6
| | | | | | the os.W*() functions used to interpret the return value. This fixes SF bug #429361.
* The fpectl module does not work on Windows, so remove Windows from theFred Drake2001-07-051-2/+2
| | | | | | \platform statement. Also fix a minor style consistency nit in an example.
* Marked the parameters to Stats.print_*() as optional.Fred Drake2001-07-021-3/+3
| | | | This closes SF bug #438032.
* Added another name.Fred Drake2001-07-021-0/+1
|
* Update to reflect Python 2.1.1 release planning.Fred Drake2001-07-022-2/+2
|
* Use the more conventional "self" as the name of the self parameter in anFred Drake2001-06-291-1/+1
| | | | example. It actually confused a reader.
* Correct a markup error for an accented character.Fred Drake2001-06-291-1/+1
| | | | Reported by Milan Zamazal <pdm@zamazal.org>.
* Removed some stray periods, and fix up a number of visible markupFred Drake2001-06-291-20/+22
| | | | | | | consistency errors (mostly omitted "()" at the end of function and method names). Reported by Milan Zamazal <pdm@zamazal.org>.
* Another name.Fred Drake2001-06-291-0/+1
|
* SourceForge bug #437041:Fred Drake2001-06-291-8/+8
| | | | | Use a portable format in the example that creates a timestamp suitable for use in email, also updating it and the footnote from RFC 822 to RFC 2822.
* Another name.Fred Drake2001-06-291-0/+1
|
* Simplify an example based on comment from Thomas Holenstein <thomas@hex.ch>:Fred Drake2001-06-291-4/+1
| | | | | Do not use an extra flag variable to test only once in one subsequent if statement.
* Backport Martin's checkin 1.4 (with minor fix):Thomas Wouters2001-06-271-1/+1
| | | | Fix bug #422702: Make flag argument to open optional, and document it that way.
* Backport Fred's checkin 1.3:Thomas Wouters2001-06-271-1/+9
| | | | | Write a better synopsis for the Scrap module, and provide a link to useful documentation on the Scrap Manager.
* Updated link to zlib's home page.Fred Drake2001-06-251-3/+2
|
* Re-organize a little, clean up some markup.Fred Drake2001-06-221-52/+73
| | | | | | | Added some comments about sys.exit(), SystemExit, and preventing restricted code from exiting the interpreter. This closes SF bug #434743.
* Corrected an error in the information on supporting weak references inFred Drake2001-06-221-9/+7
| | | | | | extension types (the docs reflected a development version of the API). This closes SF bug #435066.
* Adjust to understand use of either single- or double-quotes to quoteFred Drake2001-06-221-20/+23
| | | | | | attribute values, and make the logic surrounding the platform annotations just a little easier to read. Also make the platform notes appear in the generated page; they were supposed to, but did not.
* Fix & clean up the information about building Python with large file supportFred Drake2001-06-221-4/+3
| | | | | | for Linux. This closes SF bug #434975.
* Separate the version number and release status information.Fred Drake2001-06-221-1/+2
|
* Add support for the classdesc* environment and the \releaseinfo andFred Drake2001-06-223-4/+38
| | | | \setreleaseinfo macros added to the CVS head.
* Properly mark the availability of tempnam() and tmpnam().Fred Drake2001-06-221-0/+3
|
* Added documentation for PyErr_SetFromErrnoWithFilename().Fred Drake2001-06-211-0/+10
|
* Adjust the documents so that the copyright is at the front of the documentsFred Drake2001-06-217-96/+20
| | | | and the license statements are at the end. This is less annoying to readers.
* Make sure 2.1.1 takes its proper place in the history of Python licenses.Fred Drake2001-06-211-4/+4
|
* This commit was manufactured by cvs2svn to create branchcvs2svn2001-06-211-0/+259
| | | | 'release21-maint'.
* Fix an improperly placed comma.Fred Drake2001-06-141-1/+1
|
* Add the appropriate availability annotations for the popen*() family ofFred Drake2001-06-111-4/+7
| | | | | | | functions -- these are not available on traditional Mac OS platforms. Corrected the version annotations for the spawn*() functions and related constants; these were added in Python 1.6, not 1.5.2.
* Fixed parameter order for os.popen2(), os.popen3(), and os.popen(4). AddedFred Drake2001-06-111-3/+11
| | | | | | | a reference to these functions and popen() from the "Process Management" section. Based on a suggestion from comp.lang.python.
* Merge in recent changes from development branch: add warning about beingFred Drake2001-06-111-0/+11
| | | | | sure that code only runs once when using the module as both a module and a script.
* Typo: "descrition" --> "description"Fred Drake2001-06-061-3/+10
| | | | | | | | Add reference to the documentation for the Python documentation markup. Fixed up a couple of descriptions. This closes SF bug #430627.
* Add references to the documentation for the Python documentation markup.Fred Drake2001-06-062-0/+14
| | | | Suggested by the comments in SF bug #430627.
* Update a "Programmer's note" about lambda forms and scoping to reflectFred Drake2001-06-051-5/+19
| | | | | | | the availability of nested scoping in Python 2.1. Note that this is a slightly different patch than was applied to the trunk of the development for Python 2.2.
* is -> if in rename descriptionSkip Montanaro2001-06-041-1/+1
|
* Explained more differences between PyList_SetItem() and PyList_SET_ITEM().Fred Drake2001-06-031-2/+7
| | | | | | | In particular, the affect on existing list content was not sufficiently explained. This closes SF bug #429554.