summaryrefslogtreecommitdiffstats
path: root/Doc/tut
Commit message (Collapse)AuthorAgeFilesLines
* fix typoFred Drake2005-01-121-1/+1
|
* Add duck-typing to the glossary.Raymond Hettinger2005-01-111-0/+11
|
* Bug #1098497: various small typo's, grammar and markup nits.Johannes Gijsbers2005-01-091-4/+4
|
* SF Patch #1093896: miscellaneous doc typosRaymond Hettinger2005-01-011-4/+5
|
* Remove the deprecated whrandom module.Raymond Hettinger2004-12-041-6/+6
|
* SF bug #1076955: Tutorial corrections Part IIRaymond Hettinger2004-12-022-34/+36
|
* SF bug #1076955: Tutorial corrections Part IRaymond Hettinger2004-12-021-54/+67
| | | | (Submitted by some anonymous person with an amazing eye for grammer nits.)
* Fix nit.Raymond Hettinger2004-12-011-1/+1
|
* REVERT revision 1.260; the trunk is FROZEN.Fred Drake2004-11-291-1/+1
| | | | | This change can be made on the trunk and release24-maint branch after the trunk is unfrozen.
* Fix a nit.Raymond Hettinger2004-11-291-1/+1
|
* SF bug #1067018: Obsolete info in Tutorial 9.1Raymond Hettinger2004-11-181-9/+0
| | | | | | Removed a section that is out of date after type/class unification. While there was still some validity, the paragraph offered more confusion that insight.
* SF bug #1067023: A small typoRaymond Hettinger2004-11-181-2/+2
| | | | Make a minor clarification between "written" and "displayed".
* - show how to use file.write() with a non-string valueFred Drake2004-11-021-1/+10
| | | | | (closes SF bug #621057) - add missing whitespace around assignment operator
* SF 1053956: help() not in tutorial indexRaymond Hettinger2004-10-261-0/+1
|
* - improve the explanation of the -*- coding: ... -*- markerFred Drake2004-10-251-6/+20
| | | | - fix a minor formatting nit that affected the typeset version
* SF patch #1035498: -m option to run a module as a scriptRaymond Hettinger2004-10-071-3/+10
| | | | (Contributed by Nick Coghlan.)
* A number of list examples used 66.6, but I doubt there's any box on whichTim Peters2004-09-281-9/+9
| | | | | | repr(66.6) == "66.6", so doubt that the claimed output has ever been seen. Changed it to 66.25 everywhere, and manually verified that the new claimed output is correct.
* Raymond observed that sometimes it's better not to link modules, so I revertedJohannes Gijsbers2004-09-251-7/+6
| | | | part of my previous last changes.
* - Use itemize instead of plain-text '*' for marking up a list.Johannes Gijsbers2004-09-241-29/+27
| | | | - Add more ulink's to modules (this should probably become a standard macro).
* Tweak the wording. Improve examples. Make more brief.Raymond Hettinger2004-09-141-26/+15
|
* Cover string.Template in the tutorial's library tour.Raymond Hettinger2004-09-141-0/+77
|
* Patch #1025795: clarify language in Data Structures chapter of tutorial:Johannes Gijsbers2004-09-111-11/+11
| | | | | | | | | | - Dictionary keys are in arbitrary order, but not random (which implies, well, intentional randomness). - Move a footnote closer to what it's talking about so that it doesn't look like we're saying that "0 == 0.0" can't be relied on. - Minor language tweaks in the vicinity. Thanks Dima Dorfman!
* SF bug #1013760: Error in Chapter 4 of TutorialRaymond Hettinger2004-08-221-1/+1
| | | | Fit a nit.
* Minor improvements to the threading introduction:Raymond Hettinger2004-08-161-11/+15
| | | | | | | | | | | | | | * Expand the example to show a join. * Mention the use case of I/O running concurrent with a computational thread. * Be a tad more forceful about recommending Queue over other approaches to synchonization. * Eliminate discussion around having a single interpreter. This is a more advanced discussion that belongs in the library reference and in a section on extending and embedding.
* fix markup nitFred Drake2004-08-091-1/+2
|
* Patch:Michael W. Hudson2004-08-071-1/+1
| | | | [ 1003863 ] adds an index entry for __all__ to the tutorial
* revise wording to avoid confusion for non-native English speakersFred Drake2004-07-211-1/+1
| | | | (second occurance of the same wording)
* revise wording to avoid confusion for non-native English speakersFred Drake2004-07-211-1/+1
|
* Fix decimal write-up nits.Raymond Hettinger2004-07-111-7/+7
|
* Fix typo.Raymond Hettinger2004-07-101-1/+1
|
* Add a link to the decimal module docs.Raymond Hettinger2004-07-091-8/+8
|
* Fix markup and nits.Raymond Hettinger2004-07-081-9/+9
|
* Typo repair.Tim Peters2004-07-071-1/+1
|
* add omitted markupFred Drake2004-07-011-2/+3
|
* * Fix typos.Raymond Hettinger2004-07-011-14/+70
| | | | | * Format an example so that the identation is more obvious. * Add a section on the decimal module to the Brief Tour Part II.
* Add genexps to the glossary.Raymond Hettinger2004-06-071-0/+12
|
* if we must argue over the/they, we can just remove the unecessary wordFred Drake2004-06-031-1/+1
|
* Fix typo: the-->theyRaymond Hettinger2004-06-031-2/+2
|
* Fixup spacing in an example.Raymond Hettinger2004-05-311-2/+2
|
* Fill-in the introductory paragraph for the library tour.Raymond Hettinger2004-05-261-0/+3
|
* Add a further tour of the standard library.Raymond Hettinger2004-05-261-0/+290
|
* Follow official recommendation for domain names in examples.Raymond Hettinger2004-05-251-3/+3
|
* Add more docs for generator expressions.Raymond Hettinger2004-05-191-0/+33
| | | | | * Put in a brief, example driven tutorial entry. * Use better examples in whatsnew24.tex.
* Patch #940026: Explain "in" when it is first used.Martin v. Löwis2004-05-061-0/+3
| | | | Backported to 2.3.
* fix typoAndrew M. Kuchling2004-03-291-1/+1
|
* Insert missing pronounRaymond Hettinger2004-03-281-2/+2
|
* - add entry for complex numberSkip Montanaro2004-03-271-22/+42
| | | | | | - fix a couple typos - refine definitions for "interpreted" and "coercion" based upon updates on the python glossary wiki
* Update timeit example to reflect current performance.Raymond Hettinger2004-03-261-3/+3
|
* Remove 'now'Andrew M. Kuchling2004-03-211-1/+1
|
* fix English usage error reported by Ken FuchsFred Drake2004-02-241-2/+2
|