summaryrefslogtreecommitdiffstats
path: root/Doc/tutorial
Commit message (Collapse)AuthorAgeFilesLines
...
* Fix some markup and small factual glitches found by M. Markert.Georg Brandl2009-07-292-14/+18
|
* Add a link to readline, and mention IPython and bpython.Georg Brandl2009-07-291-4/+14
|
* #6564: fix section about the two raise syntaxes.Georg Brandl2009-07-241-4/+5
|
* #6505: fix typos.Georg Brandl2009-07-181-4/+4
|
* More Decimal quote fixing; backport of r73642Mark Dickinson2009-06-281-3/+3
|
* #6204: use a real reference instead of "see later".Georg Brandl2009-06-061-1/+1
|
* #6211: elaborate a bit on ways to call the function.Georg Brandl2009-06-061-5/+14
|
* Use preferred form of raising exceptions.Georg Brandl2009-05-301-1/+1
|
* Use raise X(y).Georg Brandl2009-05-221-3/+3
|
* part of #4144: fix exception message in console session.Georg Brandl2009-05-171-2/+2
|
* Issue #2396: backport the memoryview object.Antoine Pitrou2009-04-021-2/+2
|
* Dont shout to users.Georg Brandl2009-03-311-1/+1
|
* #5018: remove confusing paragraph.Georg Brandl2009-03-311-7/+5
|
* #1530012: move TQS section before raw strings.Georg Brandl2009-03-311-15/+14
|
* Add section numbering to some of the larger subdocuments.Georg Brandl2009-03-281-0/+1
|
* Issue #5341: Fix a variety of spelling errors.Mark Dickinson2009-02-215-7/+7
|
* revert r69777 since all the experts agree that extra import lines distract ↵Benjamin Peterson2009-02-202-4/+2
| | | | from the code
* Since we recommend one module per import line, reflect this also in theJeroen Ruigrok van der Werven2009-02-192-2/+4
| | | | documentation.
* markup fixDavid Goodger2009-01-311-1/+1
|
* Remove tabs from the documentation.Georg Brandl2009-01-032-2/+2
|
* Remove trailing whitespace.Georg Brandl2009-01-0311-45/+45
|
* #4811: fix markup glitches (mostly remains of the conversion),Georg Brandl2009-01-021-1/+1
| | | | found by Gabriel Genellina.
* pretend exceptions don't exist a while longerBenjamin Peterson2008-12-241-28/+6
|
* Add reference to enumerate() to indices example.Georg Brandl2008-12-041-2/+5
|
* Fix grammar error; reword two paragraphsAndrew M. Kuchling2008-11-061-9/+11
|
* #4247: add "pass" examples to tutorial.Georg Brandl2008-11-061-0/+33
|
* Fix typo.Georg Brandl2008-09-161-1/+1
|
* Remove things specific to the old Macintosh, and spell "Mac OS X" consistently.Georg Brandl2008-09-133-13/+13
|
* remove duplicate targetBenjamin Peterson2008-09-131-1/+0
|
* Incorporate some suggestions by Tait Stevens.Georg Brandl2008-09-134-27/+42
|
* Use title caseAndrew M. Kuchling2008-09-131-1/+1
|
* Remove mention of backquotes in the tutorial.Georg Brandl2008-08-081-6/+1
|
* revert last revision; code was rightBenjamin Peterson2008-08-021-3/+3
|
* fix indentation that caused logic bugBenjamin Peterson2008-08-021-3/+3
|
* Shorten some overlong lines.Georg Brandl2008-07-261-3/+6
|
* nonlocal is not in 2.6.Georg Brandl2008-07-211-4/+2
|
* #3388: add a paragraph about using "with" for file objects.Georg Brandl2008-07-161-0/+10
|
* fix various doc typos #3320Benjamin Peterson2008-07-121-1/+1
|
* Better quote with single quotes.Georg Brandl2008-05-301-2/+2
|
* fix spellingBenjamin Peterson2008-05-281-2/+2
|
* update tutorial function with more appropiate one from Eric SmithBenjamin Peterson2008-05-281-2/+2
|
* update the tutorial to use str.formatBenjamin Peterson2008-05-267-32/+81
|
* Queue renaming reversal part 3: move module into place andGeorg Brandl2008-05-251-8/+8
| | | | change imports and other references. Closes #2925.
* Revert the renaming of repr to reprlib.Brett Cannon2008-05-231-3/+3
|
* Changed references to the reprlib module to use its new name.Alexandre Vassalotti2008-05-161-3/+3
|
* Fix-up docs for socketserver and queue renaming.Georg Brandl2008-05-121-1/+1
|
* reload() takes the module itself.Georg Brandl2008-05-111-1/+1
|
* Add a note about using reload().Georg Brandl2008-05-091-0/+7
|
* Typo fixAndrew M. Kuchling2008-04-151-1/+1
|
* Add *,**,@ to index, as suggested byAndrew M. Kuchling2008-04-151-0/+6
| | | | | | | | http://farmdev.com/thoughts/24/what-does-the-def-star-variable-or-def-asterisk-parameter-syntax-do-in-python-/ The right entry type to use isn't clear; operator seems wrong, because *,**,@ aren't being used in expressions here. I put them as 'statement'; 'syntax' might be better.