summaryrefslogtreecommitdiffstats
path: root/Doc
Commit message (Collapse)AuthorAgeFilesLines
* Fixing bug 405999 -- clarifying differences between Python'sMoshe Zadka2001-04-111-0/+4
| | | | getopt and GNU getopt -- Python is like classical UNIX getopt.
* Based on a comment by Konrad Hinsen on python-list:Fred Drake2001-04-111-4/+4
| | | | | | | | Change "EOF" to "end-of-file", on the premise that it is easier for new programmers to understand (at least a little). This does not attempt to explain "file or device attached to standard input."
* Added definition of "test fixture".Fred Drake2001-04-101-2/+142
| | | | | | | | Added description of optional parameter to the TestSuite constructor. Added descriptions of the TestLoader and TextTestRunner classes. Added method descriptions for the TestCase class.
* Typo: "BuildApple" --> "BuildApplet"Fred Drake2001-04-101-2/+5
| | | | Added reference to the webbrowser module from the nsremote description.
* Bump version numbers for upcoming release candidate.Fred Drake2001-04-102-2/+2
|
* Update the XML conversion specification.Fred Drake2001-04-101-0/+2
|
* Remove the mapping() function from the documentation.Fred Drake2001-04-101-25/+15
| | | | Add a description of the ReferenceError exception.
* Add note that difflib was added in Python 2.1.Fred Drake2001-04-101-0/+3
|
* Normalize tabs to spaces.Fred Drake2001-04-101-4/+6
| | | | | | Update the attribution for the "Curses Programming with Python" How-To. Change the way the reference to the Demo/curses/ directory is marked up.
* Add reference to the DDJ article discussing a similar algorithm.Fred Drake2001-04-101-0/+9
|
* Add corresponding support for the alltt environment to the HTML generator.Fred Drake2001-04-103-2/+48
|
* Import the alltt package and wrap that environment in a similar way toFred Drake2001-04-101-0/+21
| | | | | the way we handle verbatim, so that it picks up the same indentation and minipage behavior.
* Add documentation for getmoduleinfo() and getmodulename().Fred Drake2001-04-101-0/+23
|
* In the typeset versions, the legal notices had grown past the one-pageFred Drake2001-04-101-0/+5
| | | | size. This constrains them to fit in one page again.
* Fix typo in example (\b should be \n in string literal).Fred Drake2001-04-091-1/+1
| | | | This closes SF bug #414279.
* Fix a number of bugs and omissions in the AddressList documentation, mostFred Drake2001-04-091-10/+23
| | | | | | | noted by Steve Holden. This closes SF bug #413876.
* Correct the documentation for getreadbufferproc and getwritebufferproc.Greg Stein2001-04-071-5/+6
| | | | Fixes bug #233308 from Travis Oliphant.
* Add entry for unittest documentation.Fred Drake2001-04-072-0/+2
|
* Start of documentation for the unittest module. Some of this comes fromFred Drake2001-04-071-0/+266
| | | | | | | | Steve Purcell's documentation, and a lot of it is written based on using PyUnit and reading the implementation. There is more to come, but I want to get this check in before I have a disk crash or anything else bad happens.
* Change {\em ...} to \emph{...} for consistency with the rest of the PythonFred Drake2001-04-051-1/+1
| | | | documentation.
* Add some information about what to expect of the DocumentType'sFred Drake2001-04-051-0/+2
| | | | | .internalSubset attribute based on a clarification from the www-dom list.
* Document PySequence_Size(), and describe PySequence_Length() as simply anFred Drake2001-04-041-1/+5
| | | | alternate name for the same function.
* Make reference to the Library Reference in the "What Now?" chapter aFred Drake2001-04-031-5/+7
| | | | | | | | hyperlink. Fix two English usage errors caught by Jan Wells: Changed "subsequence" to "sub-sequence" in two places, and avoid improper use of "hopefully" in the first paragraph of the "What Now?" chapter.
* Allow the <author/> element to appear before a paragraph without beingFred Drake2001-03-291-1/+1
| | | | made a part of the paragraph.
* Add entry for curses.panel documentation.Fred Drake2001-03-292-0/+2
|
* Fix serious markup errors.Fred Drake2001-03-291-11/+11
|
* Remove the spurious space of uncertain origin from the output for function,Fred Drake2001-03-291-10/+10
| | | | | method and constructor signatures. Suggested by Peter Funk on the Doc-SIG mailing list.
* Added example use of weak references, contributed by Tim Peters.Fred Drake2001-03-281-0/+22
|
* Added documentation for PyObject_IsInstance() and PyObject_IsSubclass().Fred Drake2001-03-281-0/+36
|
* Typo: "ariables" --> "variables"Fred Drake2001-03-281-1/+1
| | | | This fixes SF bug #411118.
* Fix a number of small issues; this closes SF bug #411063.Fred Drake2001-03-281-4/+4
|
* Add a note that the "kfm" controller supports "konqueror" as well as theFred Drake2001-03-261-1/+3
| | | | old KDE 1 "kfm" command.
* Note missing explanationAndrew M. Kuchling2001-03-261-2/+2
|
* Document use_rawinput. (Although now that I think more about it, aGuido van Rossum2001-03-241-1/+6
| | | | | better solution would have been to factor out the raw_input() call and make it into an overridable method. Oh well, maybe later...)
* Strengthen the constraints on calling PyObject_GC_Fini().Fred Drake2001-03-231-0/+5
|
* Add nested scopes spec to appendix.Jeremy Hylton2001-03-234-32/+161
| | | | | | | | | | | Add new opcodes LOAD_CLOSURE, LOAD_DEREF, STORE_DEREF, MAKE_CLOSURE to docs for dis module. Add docs for new function and code members in Sec. 3 of ref manual. They're present regardless of whether nested scopes are used. Remove description of default argument hack from Sec. 7 of the ref manual and refer the reader to the appendix.
* Remove the annoying __version__ definitions.Fred Drake2001-03-233-4/+0
|
* Lots of small changes to make this work with the Python DOM bindingsFred Drake2001-03-231-91/+95
| | | | | | | (minidom in particular); it was using PyDOM which is now obsolete. Only write the output file on success -- this avoids updating the timestamp on the file on failure, which confuses "make".
* Pick up the "encode" function from esistools instead of defining our ownFred Drake2001-03-231-15/+9
| | | | | | (broken) version. Remove Conversion.err_write() -- use dbgmsg() consistently.
* No quotes around the "future" in the first use of the term "futureFred Drake2001-03-231-1/+1
| | | | statement".
* Re-write to no longer depend on an old version of PyXML. This nowFred Drake2001-03-231-46/+273
| | | | | | | implements a SAX XMLReader interface instead of the old Builder interface used with PyDOM (now obsolete). This only depends on the standard library, not PyXML.
* Pick the "escape" function from the standard library instead of from PyXML.Fred Drake2001-03-231-1/+1
|
* Add conversions for more of the markup -- not all of this was around whenFred Drake2001-03-231-1/+32
| | | | this file was written!
* Add entry for the futures appendix in the reference manual.Fred Drake2001-03-231-3/+3
| | | | Correct the comment at the top of the file.
* Include the futures appendix.Fred Drake2001-03-231-0/+3
|
* Revise the markup so that this formats and uses markup consistently withFred Drake2001-03-231-28/+32
| | | | the rest of the documentation.
* Add some initial text for the appendix on future statements and nested scopes.Jeremy Hylton2001-03-231-0/+149
|
* Note that assignments to __debug__ are illegalJeremy Hylton2001-03-231-0/+2
|
* Revert to ver 1.22, which was the version before the nested scopesJeremy Hylton2001-03-231-91/+106
| | | | | docs were introduced. This loses a few small changes, but Fred says that's okay.
* Bump version number.Fred Drake2001-03-231-1/+1
|