Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Update version numbering from 1.6 to 2.0. | Fred Drake | 2000-06-30 | 1 | -1/+1 |
| | |||||
* | Clarify the description of the else clause for try/except, and add an | Fred Drake | 2000-04-17 | 1 | -3/+8 |
| | | | | | | explanation of why you'd want to use it. Based on a question from Michael Simcich <msimcich@accesstools.com>. | ||||
* | Marc-Andre Lemburg <mal@lemburg.com>: | Fred Drake | 2000-04-06 | 1 | -0/+101 |
| | | | | | Tutorial information about Unicode strings in Python, with some markup adjustments from FLD. | ||||
* | Fixed typo in example code; spotted by Everett Lipman | Fred Drake | 2000-04-04 | 1 | -1/+1 |
| | | | | <lipman@sphere.niddk.nih.gov>. | ||||
* | Merge in changes from the 1.5.2p2 release. | Fred Drake | 2000-04-03 | 1 | -267/+410 |
| | |||||
* | Use \citetitle and \programopt as appropriate. | Fred Drake | 1999-11-10 | 1 | -44/+44 |
| | |||||
* | Added "import string" to a couple of examples that describe string | Fred Drake | 1999-09-14 | 1 | -0/+2 |
| | | | | | module functions, to clarify that the import is not automatic. Suggested by Koray Oner <Koray.Oner@Eng.Sun.COM>. | ||||
* | Added paragraph explaining that except clauses can't be empty; that | Fred Drake | 1999-08-24 | 1 | -0/+4 |
| | | | | pass can be used if needed. By Dan Wolfe <wolfeman@apple.com>. | ||||
* | Made several grammatical corrections based on comments from Daniel | Fred Drake | 1999-06-30 | 1 | -10/+20 |
| | | | | | | | | Barcla <danielb@digitalfocus.com>. Also added example of what happens when a parameter is set both positionally and by a keyword (one of Daniels suggestions related to that paragraph). | ||||
* | Fixed typo reported by Bennett Benson | Fred Drake | 1999-06-10 | 1 | -1/+1 |
| | | | | <BennettBenson@mn.mediaone.net>. | ||||
* | Explain comments at the start of chapter 3. This is needed since they | Fred Drake | 1999-04-29 | 1 | -2/+21 |
| | | | | | | appear in the examples without any further explanation, and the tutorial doesn't have this information explicit anywhere else. Omission reported by Jon Black <jblack@Ridgeway-Sys.com>. | ||||
* | Update starship URLs. | Fred Drake | 1999-04-29 | 1 | -2/+2 |
| | |||||
* | In list of sequence comparison examples, "=" should be "==". Reported | Fred Drake | 1999-04-16 | 1 | -1/+1 |
| | | | | by Mirko Liss <n89553@hrz.uni-paderborn.de>. | ||||
* | Fixed latex2html weirdness with footnotes. | Fred Drake | 1999-04-05 | 1 | -10/+6 |
| | |||||
* | Fixed grammatical error reported by Donald Wallace Rouse II | Fred Drake | 1999-03-12 | 1 | -2/+2 |
| | | | | <dwr2@ix.netcom.com>. | ||||
* | Lots of nits to respond to various comments from users. | Fred Drake | 1999-03-10 | 1 | -57/+56 |
| | |||||
* | Document -OO; "unsafe" optimization that removes docstrings. | Guido van Rossum | 1999-01-28 | 1 | -0/+9 |
| | | | | Marc-Andre Lemburg. | ||||
* | Minor clarifications by Sean Reifschneider: | Guido van Rossum | 1999-01-06 | 1 | -1/+15 |
| | | | | | - add example of string literal concatenation - add clarifying comment to the example of the if statement | ||||
* | Clarified what Python versions the interactivity chapter applies to, | Fred Drake | 1998-12-28 | 1 | -1/+9 |
| | | | | and what it doesn't apply to. | ||||
* | Ignore the byproducts of SGML/XML conversions for now. | Fred Drake | 1998-12-01 | 1 | -0/+3 |
| | |||||
* | Change "for" explanation slightly based on comment passed along by | Fred Drake | 1998-11-30 | 1 | -7/+10 |
| | | | | Blake Winton <BlakeW@pcdocs.com>. | ||||
* | Eliminate remaining \verb/.../ constructs; there's no need for them. | Fred Drake | 1998-11-17 | 1 | -3/+3 |
| | |||||
* | The last two example functions in the section about default argument | Guido van Rossum | 1998-10-24 | 1 | -2/+2 |
| | | | | values (4.7.1) should return l, not a. Reported by Axel Boldt. | ||||
* | Add a \label to the section "Fancier Output Formatting" (it's referenced from | Fred Drake | 1998-09-11 | 1 | -156/+89 |
| | | | | | | the KOE docs). Some markup nits. | ||||
* | Add warning that mutable argument defaults are evaluated only once; | Guido van Rossum | 1998-08-07 | 1 | -0/+39 |
| | | | | | | | | | with examples and workaround. This keeps coming up, and I believe that this section in the tutorial may have been (in part) the source of the confusion. While it didn't show examples with [] for a default, it also didn't emphasize enough why that would be a bad idea, and while it did say that defaults are evaluated at the point of function definition, the example was not relevant for this issue. | ||||
* | Update to use a separate page for front matter. | Fred Drake | 1998-07-28 | 1 | -0/+4 |
| | |||||
* | In the example iterating over sys.argv and opening each argument, | Guido van Rossum | 1998-07-07 | 1 | -1/+1 |
| | | | | change it to iterate over sys.argv[1:]. Suggestion by Gerry Wiener. | ||||
* | Added a section to the chapter on modules, describing the package system. | Andrew M. Kuchling | 1998-07-01 | 1 | -0/+202 |
| | | | | | | | | The text is almost completely from GvR's essay on packages; some introductory paragraphs have been removed, and everything after the 'Details' section in the HTML has been dropped (seems too technical). A paragraph has been added after the sample package layout stating that there must be a file called__init__.py in a directory to make it a package. | ||||
* | Note that no .pyc/.pyo files are created for script files. | Guido van Rossum | 1998-06-28 | 1 | -0/+7 |
| | |||||
* | There's no point in mentioning F6 as an alternate EOF on DOS -- it | Guido van Rossum | 1998-06-22 | 1 | -1/+1 |
| | | | | | doesn't work on modern Windows systems, and Control-Z works everywhere. | ||||
* | Say a bit more about .pyc and .pyo files. | Guido van Rossum | 1998-05-29 | 1 | -5/+35 |
| | |||||
* | Fixed example to load the startup file from a script (didn't test for the | Fred Drake | 1998-04-13 | 1 | -6/+30 |
| | | | | | | | | | | file's existance). Removed some XXX comments about extension modules which support pickling. Added text from AMK about the readline and rlcompleter modules. Thanks, AMK! | ||||
* | The built-in exceptions are not still strings, so make no claims about them. | Fred Drake | 1998-04-12 | 1 | -1/+0 |
| | |||||
* | Change \sectcode to logical markup. | Fred Drake | 1998-04-04 | 1 | -3/+3 |
| | |||||
* | Normalized case rules in section headings. | Fred Drake | 1998-04-03 | 1 | -84/+76 |
| | | | | | | Moved stuff from "Recent Additions to 1.1" to "More on Defining Functions". This means there's now a short section on "Defining Functions" immediately followed by a long section "More on Defining Functions." | ||||
* | Small markup nits, a few grammatical fixes, and a clarification of the binary | Fred Drake | 1998-04-01 | 1 | -59/+65 |
| | | | | | | mode for files under MacOS. Updated the traffic figure for c.l.p in the "What Now?" chapter; see comments. | ||||
* | Convert LaTeX support to create a new class of documents. HTML generation | Fred Drake | 1998-03-03 | 1 | -2/+1 |
| | | | | | | | | now requires LaTeX2HTML 98.1p1 or newer (& and is still in progress). This means that doing things to change the formatting of the manuals (at the "normal user" level, like A4 paper), can happen in just one place, rather than in each document file. | ||||
* | Added \label{}s for logical addressing. | Fred Drake | 1998-02-26 | 1 | -71/+142 |
| | |||||
* | Remove \bcode / \ecode everywhere. | Fred Drake | 1998-02-13 | 1 | -699/+640 |
| | | | | | | | | | Make all the indentations in {verbatim} environments have column 0 of the listing in column 0 of the file. Remove pagenumbering / pagestyle cruft. Use more logical and less physical markup. | ||||
* | "lists objects" --> "list objects" (Section "More on Lists".) | Fred Drake | 1998-02-11 | 1 | -1/+1 |
| | |||||
* | In the appendix, all sections were marked as subsections, and so had section | Fred Drake | 1998-02-11 | 1 | -4/+4 |
| | | | | numbers "A.0.#". Fixed. | ||||
* | Use \url{} to mark URLs. | Fred Drake | 1998-01-22 | 1 | -6/+6 |
| | |||||
* | Consistency: "{\bf ...}" ==> "\strong{...}" | Fred Drake | 1998-01-14 | 1 | -1/+1 |
| | | | | | | | "{\em ...}" ==> "\emph{...}" Not at all sure what to do with "{\rm ...}". Leaving it for now. | ||||
* | Removed \mytableofcontents; just use \tableofcontents. | Fred Drake | 1998-01-13 | 1 | -1/+1 |
| | |||||
* | Consistency: | Fred Drake | 1998-01-13 | 1 | -34/+34 |
| | | | | | | | | "Unix" ==> "\UNIX{}" "C" ==> "\C{}" "C++" ==> "\Cpp{}" | ||||
* | Added openright option the the \documentclass{} for each of the manuals. | Fred Drake | 1998-01-13 | 1 | -1/+1 |
| | |||||
* | Revise prologue and frontmatter to use latex2e (not in 2.09 compatibility | Fred Drake | 1998-01-09 | 1 | -8/+3 |
| | | | | mode) and take advantage of changes in myformat.sty. | ||||
* | Took out some disclaiming text (even from the title!). Rewritten | Guido van Rossum | 1997-12-30 | 1 | -41/+35 |
| | | | | | abstract. Alas, I didn't get to do anything else before the release :-( | ||||
* | Make examples consistently use 4-space indentation. | Fred Drake | 1997-12-04 | 1 | -451/+451 |
| | | | | | | | | | | Use \file{} for file names. Prefer \code{blat} and \emph{blat} to {\tt blat} and {\em blat}; this matches current style in the Library Reference a bit better. Made the example startup banner current. The version number should be bumped before the next release. | ||||
* | Change Python-as-executable-script example to use "#! /usr/bin/env python" | Fred Drake | 1997-10-15 | 1 | -5/+5 |
| | | | | | | | | | since that's now the recommended way to do it. In pickling discussion, change "code{pickle}" (not missing leading "\") to "This" since the immediately preceeding sentence ended with the same text (with the proper "\"). Fixes a formatting bug and an odd glitch in the writing. |