Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Updates to describe function attributes. | Barry Warsaw | 2001-02-27 | 1 | -4/+12 |
| | |||||
* | Sequence indexes are non-negative, not natural (0 is not a natural number). | Fred Drake | 2001-02-22 | 1 | -32/+32 |
| | | | | | | Reported by Daniel May <mayds@ecn.purdue.edu>. De-tabified everywhere. | ||||
* | Feeble attempt to repair obsolete info about hex escapes. | Tim Peters | 2001-02-14 | 1 | -4/+2 |
| | |||||
* | Minor markup adjustments. | Fred Drake | 2001-02-02 | 1 | -15/+13 |
| | | | | | Move some index entries next to what they are referring to for better "targetting". | ||||
* | Allow 'continue' inside 'try' clause | Jeremy Hylton | 2001-02-01 | 1 | -9/+11 |
| | | | | SF patch 102989 by Thomas Wouters | ||||
* | Remove spurious "\end{description}" that caused formatting to fail. | Fred Drake | 2001-02-01 | 1 | -2/+0 |
| | |||||
* | update section 4.1 to describe nested scopes | Jeremy Hylton | 2001-02-01 | 1 | -94/+83 |
| | |||||
* | Remove note about the compiler not checking for two kinds of illegal | Jeremy Hylton | 2001-01-30 | 1 | -5/+0 |
| | | | | imports. It checks for them now. | ||||
* | Typo: coplete --> complete | Fred Drake | 2001-01-26 | 1 | -1/+1 |
| | | | | This closes SF bug #129759. | ||||
* | Updated note about collection of cyclic garbage, based on comments from | Fred Drake | 2001-01-22 | 1 | -3/+6 |
| | | | | Chris Ryland. | ||||
* | Document rich comparisons. | Guido van Rossum | 2001-01-18 | 1 | -5/+42 |
| | |||||
* | Fix a variety of minor nits and typos caught by Chris Ryland | Fred Drake | 2001-01-14 | 1 | -7/+7 |
| | | | | <cpr@emsoftware.com>. | ||||
* | Steve Holden <sholden@holdenweb.com>: | Fred Drake | 2001-01-09 | 1 | -13/+13 |
| | | | | Clarify the handling of characters following backslashes in raw strings. | ||||
* | __rcmp__() description: Changed to indicate that this is no longer | Fred Drake | 2001-01-04 | 1 | -8/+1 |
| | | | | | | | | supported as of Python 2.1. We still need to have an entry for this since it is reasonable for users to want to understand existing code. This closes SF bug #122715. | ||||
* | Document the NotImplemented object. | Neil Schemenauer | 2001-01-04 | 1 | -0/+9 |
| | |||||
* | Improve description of else clause of the try/except/else statement. | Fred Drake | 2001-01-02 | 1 | -6/+11 |
| | | | | This closes (again!) bug #127098. | ||||
* | Change documentation of 'else' clause of 'try/except' to make clear that it | Thomas Wouters | 2000-12-31 | 1 | -3/+5 |
| | | | | | | | | doesn't get triggered by 'return', 'break' or 'continue'. If the 'try-inside-continue' patch does not get accepted before next release, the 'or continue' should be removed ;P Closes SF patch #103045 and SF bug #127098. | ||||
* | Fix typo | Andrew M. Kuchling | 2000-12-19 | 1 | -1/+1 |
| | |||||
* | Updated string literals description to encompass Unicode literals and the | Fred Drake | 2000-12-19 | 1 | -11/+24 |
| | | | | | additional escape sequences defined for Unicode. This closes bug #117158. | ||||
* | Clarify __repr__ and __str__. | Guido van Rossum | 2000-12-19 | 1 | -7/+10 |
| | |||||
* | Additional docs for __iadd__ and family, closing SF bug #117178 and SF patch | Thomas Wouters | 2000-12-11 | 1 | -0/+26 |
| | | | | #102169. | ||||
* | Adjust explanation of operator precedence summary -- exponentiation groups | Fred Drake | 2000-12-11 | 1 | -1/+2 |
| | | | | | | from right to left! Closes bug #125391. | ||||
* | Fix error noted by Gerrit Holl (old; had been buried in my INBOX): | Fred Drake | 2000-12-07 | 1 | -3/+3 |
| | | | | | sequence repitition works just fine with long integers now, so we should not say that only plain integers are allowed. | ||||
* | Added a note that objects which emulate built-in types should only | Fred Drake | 2000-12-07 | 1 | -0/+7 |
| | | | | | implement as many of the relevant methods as make sense for the particular information being modelled. | ||||
* | Updates to reflect pending changes to the XML conversion process. | Fred Drake | 2000-11-22 | 1 | -1/+1 |
| | |||||
* | Note that readframes() returns data in linear format, even if the original | Fred Drake | 2000-11-17 | 1 | -0/+6 |
| | | | | | | | is encoded in u-LAW format. Based on suggestion from Anthony Baxter <anthony_baxter@users.sourceforge.net>. This closes bug #122273. | ||||
* | Denis S. Otkidach <ods@users.sourceforge.net>: | Fred Drake | 2000-09-21 | 1 | -0/+42 |
| | | | | | | | | | | Show how code can be written to handle __getslice__ & friends in a way that is compatible with pre-2.0 versions of Python while still working with the "new" way of handling slicing. Additional explanation added by Fred Drake. This closes SourceForge patch #101388. | ||||
* | Lots of minor fixes, many suggested by Detlef Lannert | Fred Drake | 2000-09-21 | 1 | -7/+8 |
| | | | | <lannert@uni-duesseldorf.de>. | ||||
* | Note that __getitem__() may receive a slice object as the index; | Fred Drake | 2000-09-21 | 1 | -2/+3 |
| | | | | reported by Detlef Lannert <lannert@uni-duesseldorf.de>. | ||||
* | Moshe Zadka <mzadka@geocities.com>: | Fred Drake | 2000-09-19 | 1 | -0/+10 |
| | | | | | | | Document the __contains__() method. (Patch slightly modified by FLD.) This closes SourceForge patch #101387. | ||||
* | Many small clarifications, including many suggested by email. | Fred Drake | 2000-09-19 | 1 | -17/+18 |
| | |||||
* | Thomas Wouters <thomas@xs4all.net>: | Fred Drake | 2000-09-12 | 1 | -0/+39 |
| | | | | | | Reference manual docs for augmented assignment. This closes SourceForge patch #101418. | ||||
* | add index entries for list comprehensions | Skip Montanaro | 2000-09-11 | 1 | -0/+2 |
| | |||||
* | Document "print >> None" | Barry Warsaw | 2000-08-29 | 1 | -3/+4 |
| | |||||
* | Rough and incomplete documentation on augmented assignment, which follows | Thomas Wouters | 2000-08-24 | 2 | -4/+11 |
| | | | | shortly. Markup also needs checking. | ||||
* | fix list comprehension discussion to use \keyword macro instead of simply | Skip Montanaro | 2000-08-23 | 1 | -3/+4 |
| | | | | quoting keywords. | ||||
* | require list comprehensions to start with a for clause | Skip Montanaro | 2000-08-22 | 1 | -2/+3 |
| | |||||
* | PEP 214, Extended print Statement, has been accepted by the BDFL. | Barry Warsaw | 2000-08-21 | 1 | -0/+12 |
| | | | | | Document the extended print form. Fred, please double check the markup! | ||||
* | Disallow "import mod.submod as m", because the result is ambiguous. Does it | Thomas Wouters | 2000-08-19 | 1 | -1/+6 |
| | | | | | | | | | | load mod.submod as m, or mod as m ? Both can be achieved differently, and unambiguously. Also attempt to document this restriction (editor appreciated!) Note that this is an artificial check during compile, because incorporating this in the grammar is hard, and then adjusting the compiler to do the right thing with the right nodes is harder. | ||||
* | Adjust the way __getslice__() is marked as deprecated; this will also | Fred Drake | 2000-08-18 | 1 | -2/+4 |
| | | | | stand out more. | ||||
* | Apply SF patch #101135, adding 'import module as m' and 'from module import | Thomas Wouters | 2000-08-17 | 1 | -8/+12 |
| | | | | | | | | name as n'. By doing some twists and turns, "as" is not a reserved word. There is a slight change in semantics for 'from module import name' (it will now honour the 'global' keyword) but only in cases that are explicitly undocumented. | ||||
* | Apply SF patch #101029: call __getitem__ with a proper slice object if there | Thomas Wouters | 2000-08-17 | 1 | -9/+18 |
| | | | | | | | | is no __getslice__ available. Also does the same for C extension types. Includes rudimentary documentation (it could use a cross reference to the section on slice objects, I couldn't figure out how to do that) and a test suite for all Python __hooks__ I could think of, including the new behaviour. | ||||
* | Fix error made in applying Thomas's patch. | Fred Drake | 2000-08-15 | 1 | -1/+1 |
| | |||||
* | Thomas Wouters <thomas@xs4all.net>: | Fred Drake | 2000-08-15 | 1 | -1/+2 |
| | | | | | Update the grammar to reflect the most recent changes to list comprehensions. | ||||
* | list comprehensions. see | Skip Montanaro | 2000-08-12 | 1 | -5/+14 |
| | | | | | | http://sourceforge.net/patch/?func=detailpatch&patch_id=100654&group_id=5470 for details. | ||||
* | Change as suggested by Peter Funk <pf@artcom-gmbh.de>: | Fred Drake | 2000-07-31 | 1 | -2/+3 |
| | | | | | Create a hyperlink between the language reference and documentation for the built in functions. | ||||
* | More of Rob W. W. Hooft's spelling fixes. The only ones left now are the | Thomas Wouters | 2000-07-16 | 4 | -8/+8 |
| | | | | | | | | | | | distutils patches, which I'll leave to the distutils maintainers. Tip: review the patch like this: grep "^[\!+-] " <patchfile> To get a quick and easy way to review the actual changes. Most of the changes are single-line ones, anyway. | ||||
* | Improve the descriptions of expected exceptions for __getitem__(), | Fred Drake | 2000-07-13 | 1 | -4/+14 |
| | | | | | __setitem__(), and __delitem__(). Based on related comments from Barry Warsaw. | ||||
* | Moshe Zadka <mzadka@geocities.com>: | Fred Drake | 2000-07-11 | 1 | -8/+29 |
| | | | | | | | | | | Update the "in" / "not in" description to accomodate the current use of the __contains__() discipline. This patch also incorporates suggestions from Marc-Andre Lemburg <mal@lemburg.com>, minor markup revisions from Fred Drake, and some rewording of the first affected paragraph (also from Fred). Closes SourceForge patch #100831. | ||||
* | Typo: "This table table" -> "This table is" | Fred Drake | 2000-07-06 | 1 | -1/+1 |
| | | | | Noted by Nicholas Spies <ns11@voicenet.com>. |