| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Add a note about "as" not being a keyword, though it has special meaning | Fred Drake | 2002-06-18 | 1 | -0/+7 |
| | | | | | | | | | when used as part of the import statement. Note that both "as" and "None" becoming keywords in the future. Closes SF bug #553262. | ||||
| * | Adjust markup to worm around tool limitations; the "m" in "model" was being | Fred Drake | 2002-04-17 | 1 | -1/+1 |
| | | | | | | dropped in the HTML formatted version. Reported by Mike Coleman. | ||||
| * | Remove repeated index entry; adds nothing different. | Fred Drake | 2002-04-16 | 1 | -2/+1 |
| | | | | | Closes SF bug #518985. | ||||
| * | Typo: thsi -> this. Closes SF bug #521450. | Fred Drake | 2002-02-22 | 1 | -1/+1 |
| | | |||||
| * | Fix typos reported by François Pinard. | Fred Drake | 2002-01-21 | 1 | -2/+2 |
| | | |||||
| * | Added some missing index entries, noted by L. Peter Deutsch. | Fred Drake | 2001-12-27 | 1 | -0/+2 |
| | | |||||
| * | \ulink is not available on the maintenance branch, so we can't use it. | Fred Drake | 2001-11-02 | 1 | -2/+1 |
| | | |||||
| * | When describing "import *", add a level of indirection between "*" and the | Fred Drake | 2001-10-24 | 1 | -3/+17 |
| | | | | | | | | | set of names imported (the "public names"), adding a definition of "public names" that describes the use of __all__. This closes SF bug #473986. Flesh out the vague reference to __import__(). | ||||
| * | Adjust the documents so that the copyright is at the front of the documents | Fred Drake | 2001-06-21 | 1 | -0/+4 |
| | | | | | and the license statements are at the end. This is less annoying to readers. | ||||
| * | Update a "Programmer's note" about lambda forms and scoping to reflect | Fred Drake | 2001-06-05 | 1 | -5/+19 |
| | | | | | | | | the availability of nested scoping in Python 2.1. Note that this is a slightly different patch than was applied to the trunk of the development for Python 2.2. | ||||
| * | Bring the notes on the relationship between __cmp__(), __eq__(), and | Fred Drake | 2001-05-29 | 1 | -13/+23 |
| | | | | | | | | | | | __hash__() up to date (re: use of objects which define these methods as dictionary keys). This closes SF bug #427698. Migrated comments about supporting __contains__() and the use of the "in" operator from the development branch. | ||||
| * | Fix typo reported in SF bug #427783. | Fred Drake | 2001-05-29 | 1 | -1/+1 |
| | | |||||
| * | Make sure we include all of Python's numeric types in the data model | Fred Drake | 2001-05-14 | 1 | -1/+2 |
| | | | | | | | description, so that the introduction of complex is not a surprise. This closes SF bug #423429. | ||||
| * | Fix typo reported by David Goodger. This closes SF patch #422383. | Fred Drake | 2001-05-10 | 1 | -1/+1 |
| | | |||||
| * | Fix the operator precedence table: exponentiation binds tighter than | Fred Drake | 2001-05-09 | 1 | -2/+2 |
| | | | | | | | negation. This closes SF bug #421999. | ||||
| * | Work around the conversion of ">>" and "<<" to guillemets. Reported by Ping. | Fred Drake | 2001-04-13 | 1 | -1/+1 |
| | | |||||
| * | Work around the conversion of ">>" and "<<" to guillemets. Reported by Ping. | Fred Drake | 2001-04-13 | 1 | -51/+56 |
| | | | | | Wrap some long lines and fix some markup nits. | ||||
| * | Work around the conversion of ">>" and "<<" to guillemets. Reported by | Fred Drake | 2001-04-12 | 1 | -1/+1 |
| | | | | | Ping on the Doc-SIG mailing list. | ||||
| * | Typo: "ariables" --> "variables" | Fred Drake | 2001-03-28 | 1 | -1/+1 |
| | | | | | This fixes SF bug #411118. | ||||
| * | Add nested scopes spec to appendix. | Jeremy Hylton | 2001-03-23 | 3 | -32/+134 |
| | | | | | | | | | | | | Add new opcodes LOAD_CLOSURE, LOAD_DEREF, STORE_DEREF, MAKE_CLOSURE to docs for dis module. Add docs for new function and code members in Sec. 3 of ref manual. They're present regardless of whether nested scopes are used. Remove description of default argument hack from Sec. 7 of the ref manual and refer the reader to the appendix. | ||||
| * | No quotes around the "future" in the first use of the term "future | Fred Drake | 2001-03-23 | 1 | -1/+1 |
| | | | | | statement". | ||||
| * | Include the futures appendix. | Fred Drake | 2001-03-23 | 1 | -0/+3 |
| | | |||||
| * | Revise the markup so that this formats and uses markup consistently with | Fred Drake | 2001-03-23 | 1 | -28/+32 |
| | | | | | the rest of the documentation. | ||||
| * | Add some initial text for the appendix on future statements and nested scopes. | Jeremy Hylton | 2001-03-23 | 1 | -0/+149 |
| | | |||||
| * | Note that assignments to __debug__ are illegal | Jeremy Hylton | 2001-03-23 | 1 | -0/+2 |
| | | |||||
| * | Revert to ver 1.22, which was the version before the nested scopes | Jeremy Hylton | 2001-03-23 | 1 | -91/+106 |
| | | | | | | docs were introduced. This loses a few small changes, but Fred says that's okay. | ||||
| * | Do not refer to "sub-modules" since that is not a defined term. | Fred Drake | 2001-03-06 | 1 | -7/+8 |
| | | |||||
| * | Re-word the explanation of the in/not in operators for increased content | Fred Drake | 2001-03-06 | 1 | -6/+14 |
| | | | | | | | | and clarity. Add a footnote to the information on the possibility of shadowing builtins with locals & module globals. | ||||
| * | 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. | ||||
