| Commit message (Expand) | Author | Age | Files | Lines |
* | Remove repeated index entry; adds nothing different. | Fred Drake | 2002-04-16 | 1 | -2/+1 |
|
|
* | Document __unicode__. Fixes #541245. | Martin v. Löwis | 2002-04-11 | 1 | -0/+7 |
|
|
* | Fix typo: coverted --> converted. Reported by Francois Pinard. | Fred Drake | 2002-04-09 | 1 | -1/+1 |
|
|
* | Add the 'bool' type and its values 'False' and 'True', as described in | Guido van Rossum | 2002-04-03 | 1 | -3/+17 |
|
|
* | Change reference to execframes to naming. | Jeremy Hylton | 2002-04-01 | 1 | -1/+1 |
|
|
* | Restore a minimal definition of execution frame, since other parts of | Jeremy Hylton | 2002-04-01 | 1 | -0/+6 |
|
|
* | Update programmer's note on nested functions. | Jeremy Hylton | 2002-04-01 | 1 | -5/+5 |
|
|
* | Reword explanation of global statement since an undeclared global is a | Jeremy Hylton | 2002-04-01 | 1 | -3/+3 |
|
|
* | Note the sole case in which the ban on "from ... import *" within a | Jeremy Hylton | 2002-04-01 | 1 | -1/+5 |
|
|
* | Remove the following restriction: | Jeremy Hylton | 2002-04-01 | 1 | -4/+0 |
|
|
* | Note that it is illegal to delete a cell variable. | Jeremy Hylton | 2002-04-01 | 1 | -2/+6 |
|
|
* | Given lambda its own section, instead of burying it in boolean operators. | Jeremy Hylton | 2002-04-01 | 1 | -30/+7 |
|
|
* | Update / simplify Identifiers section for nested scopes. | Jeremy Hylton | 2002-04-01 | 1 | -18/+2 |
|
|
* | Update docs for nested scopes. | Jeremy Hylton | 2002-04-01 | 2 | -257/+134 |
|
|
* | Update documentation of code objects. | Jeremy Hylton | 2002-04-01 | 1 | -10/+15 |
|
|
* | Small fixes for description of function attributes. | Jeremy Hylton | 2002-04-01 | 1 | -5/+3 |
|
|
* | Fix up unescaped tilde; reported by several people. | Fred Drake | 2002-03-18 | 1 | -1/+1 |
|
|
* | Markup error: braces not properly marked in dictionary display | Fred Drake | 2002-03-16 | 1 | -1/+1 |
|
|
* | Revise the markup related to the grammar productions to increase the | Fred Drake | 2002-03-15 | 5 | -82/+76 |
|
|
* | Typo: thsi -> this. Closes SF bug #521450. | Fred Drake | 2002-02-22 | 1 | -1/+1 |
|
|
* | Fix typo reported by François Pinard. | Fred Drake | 2002-01-21 | 1 | -1/+1 |
|
|
* | Added some missing index entries, noted by L. Peter Deutsch. | Fred Drake | 2001-12-27 | 1 | -0/+2 |
|
|
* | Update to use the notice environment so a multi-paragraph note can be | Fred Drake | 2001-12-14 | 1 | -2/+4 |
|
|
* | Update information about __del__() & reference cycles for CPython. | Fred Drake | 2001-12-14 | 1 | -7/+18 |
|
|
* | Work around the problem of spaces after a "}" being dropped by LaTeX2HTML if | Fred Drake | 2001-12-14 | 1 | -5/+5 |
|
|
* | Fix for | Michael W. Hudson | 2001-12-12 | 1 | -2/+45 |
|
|
* | Add a note about yield requiring a __future__ directive. | Fred Drake | 2001-12-12 | 1 | -0/+10 |
|
|
* | Clean up a sad sentence in the yield description. | Fred Drake | 2001-12-11 | 1 | -5/+5 |
|
|
* | Document generators and the yield statement, avoiding implementation details. | Fred Drake | 2001-12-11 | 2 | -1/+65 |
|
|
* | Fix whitespace in example of bad indentation: a comment indicated that one | Fred Drake | 2001-12-11 | 1 | -8/+8 |
|
|
* | Add change notes where im_class is discussed, since the exact meaning changes | Fred Drake | 2001-12-07 | 1 | -0/+2 |
|
|
* | Correct the description of im_class. (Fred, this is changed in 2.2. | Guido van Rossum | 2001-12-07 | 1 | -6/+5 |
|
|
* | Add a note to the description of the interaction between the softspace | Fred Drake | 2001-12-05 | 1 | -9/+12 |
|
|
* | Import the keyword module instead of relying on our own list of | Guido van Rossum | 2001-12-04 | 1 | -11/+2 |
|
|
* | Put the keywords back in alphabetical order. Apparently somebody | Guido van Rossum | 2001-12-04 | 1 | -2/+2 |
|
|
* | Remove most references to __members__ and __methods__, leaving only one pair | Fred Drake | 2001-12-03 | 1 | -8/+1 |
|
|
* | Clean up some markup cruft. A number of the macros that take no | Fred Drake | 2001-11-28 | 3 | -11/+11 |
|
|
* | Fred observes that the typo was not the only problem with this sentence. | Jeremy Hylton | 2001-11-14 | 1 | -1/+1 |
|
|
* | typo | Jeremy Hylton | 2001-11-14 | 1 | -2/+2 |
|
|
* | When describing "import *", add a level of indirection between "*" and the | Fred Drake | 2001-10-24 | 1 | -3/+17 |
|
|
* | Use the \note and \warning macros where appropriate. | Fred Drake | 2001-10-20 | 2 | -6/+6 |
|
|
* | Fix typo reported by Michael Soulier. | Fred Drake | 2001-10-18 | 1 | -1/+1 |
|
|
* | Removed stray backslash (a typo -- my fault). | Tim Peters | 2001-10-01 | 1 | -1/+1 |
|
|
* | The description of dictionary comparison was out of date. Rather than | Tim Peters | 2001-10-01 | 1 | -9/+12 |
|
|
* | Refer to the objects which define __len__(), __*item__(), and __iter__() | Fred Drake | 2001-10-01 | 1 | -17/+35 |
|
|
* | Fix minor usage and consistency nits. | Fred Drake | 2001-09-18 | 1 | -4/+5 |
|
|
* | Work around a LaTeX2HTML bug that caused the "m" in "mutable" to be dropped | Fred Drake | 2001-09-10 | 1 | -1/+1 |
|
|
* | SF patch #455966: Allow leading 0 in float/imag literals. | Tim Peters | 2001-08-30 | 1 | -7/+7 |
|
|
* | Docs for the PEP 264 changes. | Michael W. Hudson | 2001-08-27 | 1 | -11/+23 |
|
|
* | Add material about the "r" and "u" prefixes for string literals; should | Fred Drake | 2001-08-14 | 1 | -8/+14 |
|
|