| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Clarify impending deprecation of the floor div operator, modulo operator, | Raymond Hettinger | 2002-10-11 | 1 | -5/+4 |
| | | | | | | | and divmod() function for complex numbers. Closes SF Bug 621708: Unclear deprecation. | ||||
| * | Backport patches from trunk revisions 1.62, 1.63. Modified to be | Fred Drake | 2002-10-07 | 1 | -4/+5 |
| | | | | | | easier to read for both HTML and typeset renderings. Relies on ../perl/python.perl revision 1.116.4.4. | ||||
| * | Backport 1.34: Changing section reference. | Raymond Hettinger | 2002-10-06 | 1 | -1/+1 |
| | | |||||
| * | Backport 1.33: | Raymond Hettinger | 2002-10-06 | 1 | -5/+5 |
| | | | | | Update programmer's note on nested functions. | ||||
| * | Backported Jeremy's documentation of nested scopes, execution frames | Raymond Hettinger | 2002-10-05 | 1 | -154/+140 |
| | | | | | and such. | ||||
| * | Backport 1.61 (note, the actual deprecation is not backported since it | Raymond Hettinger | 2002-10-05 | 1 | -3/+8 |
| | | | | | | | | could affect existing code; instead, the documentation of the deprecation is being backported to provide maximum advance notice): Patch 543387. Document deprecation of complex %, //,and divmod(). | ||||
| * | Backport 1.94: | Raymond Hettinger | 2002-10-05 | 1 | -4/+4 |
| | | | | | | Clarified that the footnote applies to versions 1.5 and after instead of just version 1.5. Closes SF bug 577793. | ||||
| * | Backport 1.54 1.53 1.52 1.51 1.50 and 1.49: | Raymond Hettinger | 2002-10-05 | 1 | -36/+47 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Try to improve the explanation of the "raise" statement and how its arguments are interpreted. This closes SF bug #532467. Fix Typo. Reword explanation of global statement since an undeclared global is a free variable and is subject to those rules. Note the sole case in which the ban on "from ... import *" within a function is enforced. Remove the following restriction: Names bound by import statements may not occur in global statements in the same scope. Why not? Note that it is illegal to delete a cell variable. Note that deleteing an unbound local will raise a NameError. | ||||
| * | Another try at clarifying what goes into and comes out of Unicode objects. | Fred Drake | 2002-09-24 | 2 | -27/+50 |
| | | |||||
| * | Backported Skip's update to revision 1.34 | Raymond Hettinger | 2002-08-28 | 1 | -0/+7 |
| | | |||||
| * | Correct and update markup to match what we're doing on the trunk. | Fred Drake | 2002-08-09 | 1 | -38/+39 |
| | | |||||
| * | Document handling of raw-unicode-escapes. Closes SF bug 587087. | Raymond Hettinger | 2002-08-06 | 1 | -0/+8 |
| | | |||||
| * | Fix various typos reported to python-docs. | Fred Drake | 2002-06-26 | 1 | -4/+4 |
| | | |||||
| * | Close bug 417930 by clarifying augmented assignment docs | Raymond Hettinger | 2002-06-25 | 1 | -0/+14 |
| | | |||||
| * | Backport change to 1.58 giving Lambda a separate section. | Raymond Hettinger | 2002-06-25 | 1 | -30/+7 |
| | | |||||
| * | SF 563530 added missing methods for emulating numeric types | Raymond Hettinger | 2002-06-20 | 1 | -0/+4 |
| | | |||||
| * | 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. | ||||
| * | Backport Guido's changes from revision 1.89: | Fred Drake | 2002-06-04 | 1 | -47/+89 |
| | | | | | | | | | | | | | | | | Addressed SF bug 421973 (finally). Rewrote the subsection on coercion rules (and made it a proper subsection, with a label). The new section is much less precise, because precise rules would be too hard to give (== I don't know what they are any more :-). OTOH, the new section gives much more up-to-date information. Also noted that __coerce__ may return NotImplemented, with the same meaning as None. FLD: My modifications to Guido's markup are included from revision 1.90. | ||||
| * | Backport ver 1.88 correction noting that lists now support .__getitem__(). | Raymond Hettinger | 2002-05-13 | 1 | -4/+2 |
| | | | | | Closes SF bug 548874 and patch 552468. | ||||
| * | Added a missing "|" in the grammar productions used in the reference manual | Fred Drake | 2002-04-30 | 1 | -7/+9 |
| | | | | | | | | (reported by François Pinard). Added some missing "_" characters in the same cluster of productions. Added missing floor division operator in m_expr production, and mention floor division in the relevant portion of the text. | ||||
| * | 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. | ||||
| * | Fix typo: coverted --> converted. Reported by Francois Pinard. | Fred Drake | 2002-04-09 | 1 | -1/+1 |
| | | |||||
| * | 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 |
| | | | | | | grammer productions. Fixes SF bug #520959. | ||||
| * | Revise the markup related to the grammar productions to increase the | Fred Drake | 2002-03-15 | 5 | -82/+76 |
| | | | | | | | level of predictability. This is not really "good" markup, but is arguably better than we had before. This closes SF bug #523117. | ||||
| * | 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-28 | 1 | -0/+2 |
| | | |||||
| * | Update to use the notice environment so a multi-paragraph note can be | Fred Drake | 2001-12-14 | 1 | -2/+4 |
| | | | | | appropriately marked. | ||||
| * | Update information about __del__() & reference cycles for CPython. | Fred Drake | 2001-12-14 | 1 | -7/+18 |
| | | | | | | | | This partially fixes SF bug #492619. Fix a typo & use the new notice environment instead of (ab)using the \note and \warning macros. | ||||
| * | Work around the problem of spaces after a "}" being dropped by LaTeX2HTML if | Fred Drake | 2001-12-14 | 1 | -5/+5 |
| | | | | | | they were represented by newlines in the document source. Partially fixes SF bug #493243. | ||||
| * | Fix for | Michael W. Hudson | 2001-12-12 | 1 | -2/+45 |
| | | | | | [ #429329 ] actual-parameters *arg, **kws not doc'd | ||||
| * | 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 |
| | | | | | | | | line was not indented at all, so the example is no longer indented at all. All of the errors being shown remain. Typo: characteru --> character | ||||
| * | Add change notes where im_class is discussed, since the exact meaning changes | Fred Drake | 2001-12-07 | 1 | -0/+2 |
| | | | | | with Python 2.2. | ||||
| * | Correct the description of im_class. (Fred, this is changed in 2.2. | Guido van Rossum | 2001-12-07 | 1 | -6/+5 |
| | | | | | Should this be labeled as changed? How?) | ||||
| * | Add a note to the description of the interaction between the softspace | Fred Drake | 2001-12-05 | 1 | -9/+12 |
| | | | | | | | | attribute of file objects, the print statement, and other file operations. This closes SF bug #484857. Fix minor markup nits. | ||||
| * | Import the keyword module instead of relying on our own list of | Guido van Rossum | 2001-12-04 | 1 | -11/+2 |
| | | | | | reserved words. No longer need to import string. | ||||
| * | Put the keywords back in alphabetical order. Apparently somebody | Guido van Rossum | 2001-12-04 | 1 | -2/+2 |
| | | | | | didn't use reswords.py, as the comment clearly states. :-( | ||||
| * | Remove most references to __members__ and __methods__, leaving only one pair | Fred Drake | 2001-12-03 | 1 | -8/+1 |
| | | | | | | | of references that now state that these attributes have been removed, directing the reader to the dir() function. This closes SF bug #456420. | ||||
| * | Clean up some markup cruft. A number of the macros that take no | Fred Drake | 2001-11-28 | 3 | -11/+11 |
| | | | | | | | | | parameters (like \UNIX) are commonly entered using an empty group to separate the markup from a following inter-word space; this is not needed when the next character is punctuation, or the markup is the last thing in the enclosing group. These cases were marked inconsistently; the empty group is now *only* used when needed. | ||||
| * | 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 |
| | | | | | | | | | 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__(). | ||||
| * | 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 |
| | | |||||
