summaryrefslogtreecommitdiffstats
path: root/Doc/tutorial
Commit message (Collapse)AuthorAgeFilesLines
* minor grammar fixes (from docs@python.org)Georg Brandl2014-10-311-2/+2
|
* Doc: fix default role usage (except in unittest mock docs)Georg Brandl2014-10-301-2/+2
|
* Fixing broken links in doc, part 3: the restGeorg Brandl2014-10-291-2/+2
|
* Use https:// URLs when referring to python.org hosts.Georg Brandl2014-10-293-6/+6
|
* #21739: mention subtle difference between loops and listcomps in tutorial.R David Murray2014-10-011-3/+8
| | | | | | | | | | We don't want to go into a full explanation of scopes at this point in the tutorial, so we just mention that the loop creates or overwrites a persistent variable while the listcomp doesn't. Not mentioning this would lead someone to incorrectly assume loops and listcomps were *completely* equivalent, which would confuse them later. Original patch by Rose Ames, tweaked to remove the word 'scope'.
* Issue #16827: Make Interpreter introduction section of the tutorial moreSenthil Kumaran2014-09-183-110/+128
| | | | | | | focussed and move advanced section and customization information to a separate file called appendix. Patch credits: Jamayla Wiley, Ya-Ting Huang and James Brewer.
* #22170: avoid printing newlines twice in tutorial example.Ezio Melotti2014-08-081-1/+1
|
* Issue #11974: Add tutorial section on class and instance variablesRaymond Hettinger2014-06-241-0/+71
| | | | (Based on a patch from Renee Chu.)
* Issue #21545: Add .pop example and tweak comment about pure mutation methods.Terry Jan Reedy2014-05-231-2/+7
| | | | Patch prepared by David Harrigan.
* Issue 21554: Repair an out-of-date tutorial example to reflect changes in ↵Raymond Hettinger2014-05-221-0/+2
| | | | shutil.
* #20874: reflow paragraph.R David Murray2014-04-161-7/+7
|
* #20874: update tutorial wording: sophisticated line editing is now standard.R David Murray2014-04-161-4/+3
| | | | Patch by Rafael Mejia.
* Get rid of deprecated IOError in the docAndrew Svetlov2014-03-312-3/+3
|
* Issue 21014: Use booleans instead of 0 and 1 in examples.Raymond Hettinger2014-03-281-1/+1
|
* tutorial: no "linux2" sys.platform on 3.x (thanks Arfrever)Georg Brandl2014-03-231-1/+1
|
* Closes #20975: make date in the interpreter banner a little more consistentGeorg Brandl2014-03-221-2/+2
|
* Merge in all documentation changes since branching 3.4.0rc1.Larry Hastings2014-03-162-6/+6
|
* Issue #6386: When executing a script that's a symlink, the directoryBrett Cannon2014-02-061-2/+8
| | | | | | | where the symlink resolves to is added to sys.path, not the directory containing the symlink itself. Thanks to Sanko Resic for an initial attempt at the patch.
* Merge from 3.3Andrew Kuchling2014-02-031-2/+1
|\
| * Use different wordAndrew Kuchling2014-02-031-2/+1
| |
* | Merge typo fix.Zachary Ware2014-01-141-1/+1
|\ \ | |/
| * Fix typo. Found by David Pesta on docs@.Zachary Ware2014-01-141-1/+1
| |
* | Merge typo fix.Zachary Ware2014-01-141-1/+1
|\ \ | |/
| * Fix typo. Found by David Pesta on docs@.Zachary Ware2014-01-141-1/+1
| |
* | Issue #18840: Introduce the json module in the tutorial, and deemphasize the ↵Antoine Pitrou2013-12-051-30/+47
|\ \ | |/ | | | | pickle module.
| * Issue #18840: Introduce the json module in the tutorial, and deemphasize the ↵Antoine Pitrou2013-12-051-30/+47
| | | | | | | | pickle module.
* | Merge indentation fix in doc example from 3.3.Ezio Melotti2013-11-171-5/+5
|\ \ | |/
| * Fix indentation in doc example.Ezio Melotti2013-11-171-5/+5
| |
* | merge with 3.3Georg Brandl2013-10-271-1/+1
|\ \ | |/
| * Fix markup errors in the docs and amend suspicious ignores.Georg Brandl2013-10-271-1/+1
| |
* | merge with 3.3Georg Brandl2013-10-121-48/+36
|\ \ | |/
| * Closes #13915: update tutorial with respect to .pyc files (__pycache__ / PEP ↵Georg Brandl2013-10-121-48/+36
| | | | | | | | | | | | 3147). Initial wording proposed by John Roth.
* | Issue #19193: Improved cross-references in the tutorial.Serhiy Storchaka2013-10-092-33/+37
|\ \ | |/
| * Issue #19193: Improved cross-references in the tutorial.Serhiy Storchaka2013-10-092-33/+37
| |
* | merge with 3.3Georg Brandl2013-10-061-1/+1
|\ \ | |/
| * Fix typo in example file name. Found by John Bokma on docs@.Georg Brandl2013-10-061-1/+1
| |
* | merge with 3.3Georg Brandl2013-10-061-0/+12
|\ \ | |/
| * Add missing list methods. Found by Leonardo Pereira on docs@.Georg Brandl2013-10-061-0/+12
| |
* | merge with 3.3Georg Brandl2013-10-061-1/+3
|\ \ | |/
| * Fix wrong Python highlighting in directory hierarchy code block.Georg Brandl2013-10-061-1/+3
| |
* | merge with 3.3Georg Brandl2013-10-061-1/+1
|\ \ | |/
| * Use "lambda expression" as preferred to "lambda form".Georg Brandl2013-10-061-1/+1
| |
* | merge with 3.3Georg Brandl2013-10-061-11/+18
|\ \ | |/
| * Closes #18646: improve lambda docs in tutorial. Original patch by Terry Reedy.Georg Brandl2013-10-061-11/+18
| |
* | merge with 3.3Georg Brandl2013-10-061-1/+0
|\ \ | |/
| * Remove newline in method that makes it possible to copy example to the ↵Georg Brandl2013-10-061-1/+0
| | | | | | | | interactive interpreter.
* | merge with 3.3Georg Brandl2013-10-061-1/+1
|\ \ | |/
| * Fix ZeroDivisionError message (reported by Pavel Fedotov on docs@)Georg Brandl2013-10-061-1/+1
| |
* | Merge: #16273: Fix tutorial discussion of seek/tell (opaque text-mode values).R David Murray2013-07-301-4/+9
|\ \ | |/
| * #16273: Fix tutorial discussion of seek/tell (opaque text-mode values).R David Murray2013-07-301-4/+9
| | | | | | | | Patch by Sijin Joseph.