summaryrefslogtreecommitdiffstats
path: root/Doc/ref
Commit message (Collapse)AuthorAgeFilesLines
* Elaborate the explanation of different flavors of _* identifiers.Fred Drake2003-09-061-16/+30
| | | | Fixes SF bug #520325.
* Fix broken markup; make the ^= representation work properlyFred Drake2003-07-241-1/+1
| | | | Closes SF bug #776181.
* Add definitions of the test and testlist symbols in the grammar soFred Drake2003-06-271-0/+5
| | | | | there are no gaps in the definitions. Closes SF bug #726150.
* Add a specific mention of the term "operator overloading" and add anFred Drake2003-05-121-1/+4
| | | | index entry. Suggested to python-docs.
* Fix symbol in grammar; this should fix some hyperlinking in the HTMLFred Drake2003-03-311-1/+1
| | | | version.
* - backport portions of SF patch #700798: fixes and cleanups for descriptor infoFred Drake2003-03-201-9/+9
| | | | - use a TeX "tie" to prevent word-wrapping in "section x.y"-like text
* Fix typo reported to python-docs.Fred Drake2003-01-251-1/+1
|
* Backport SF patch #634866: Alex Martelli's corrections to the ref manual.Raymond Hettinger2003-01-193-48/+98
|
* Backport documentation of left-to-right evaluation order.Raymond Hettinger2002-12-161-0/+31
| | | | | | Highlight the difference for dictionaries and provide Py2.2.3 users which advanced notice that the evaluation order will change for Py2.3.
* Revise the __all__ index entry a touch.Fred Drake2002-12-071-1/+1
|
* Add __all__ to Reference Manual index.Raymond Hettinger2002-12-071-0/+1
| | | | Closes SF 643227.
* Update: Older versions of Python crashed when calling repr()Fred Drake2002-11-131-3/+5
| | | | | | (including the implied call using back-ticks) of a recursive object, but this is no longer the case. Reported by Manus Hand via email.
* Relocate an index entry so named anchors are not generated in a section head.Fred Drake2002-10-241-1/+2
| | | | Closes SF bug #546579.
* Added cross-references to related material on exceptions.Fred Drake2002-10-181-9/+13
| | | | | | | Closes SF bug #217195. Make sure section numbers wrap together with the preceeding word ("section").
* Added cross-references to related material on exceptions.Fred Drake2002-10-181-0/+3
| | | | Closes SF bug #217195.
* Clarify impending deprecation of the floor div operator, modulo operator,Raymond Hettinger2002-10-111-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 beFred Drake2002-10-071-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 Hettinger2002-10-061-1/+1
|
* Backport 1.33:Raymond Hettinger2002-10-061-5/+5
| | | | Update programmer's note on nested functions.
* Backported Jeremy's documentation of nested scopes, execution framesRaymond Hettinger2002-10-051-154/+140
| | | | and such.
* Backport 1.61 (note, the actual deprecation is not backported since itRaymond Hettinger2002-10-051-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 Hettinger2002-10-051-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 Hettinger2002-10-051-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 Drake2002-09-242-27/+50
|
* Backported Skip's update to revision 1.34Raymond Hettinger2002-08-281-0/+7
|
* Correct and update markup to match what we're doing on the trunk.Fred Drake2002-08-091-38/+39
|
* Document handling of raw-unicode-escapes. Closes SF bug 587087.Raymond Hettinger2002-08-061-0/+8
|
* Fix various typos reported to python-docs.Fred Drake2002-06-261-4/+4
|
* Close bug 417930 by clarifying augmented assignment docsRaymond Hettinger2002-06-251-0/+14
|
* Backport change to 1.58 giving Lambda a separate section.Raymond Hettinger2002-06-251-30/+7
|
* SF 563530 added missing methods for emulating numeric typesRaymond Hettinger2002-06-201-0/+4
|
* Add a note about "as" not being a keyword, though it has special meaningFred Drake2002-06-181-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 Drake2002-06-041-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 Hettinger2002-05-131-4/+2
| | | | Closes SF bug 548874 and patch 552468.
* Added a missing "|" in the grammar productions used in the reference manualFred Drake2002-04-301-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 beingFred Drake2002-04-171-1/+1
| | | | | dropped in the HTML formatted version. Reported by Mike Coleman.
* Remove repeated index entry; adds nothing different.Fred Drake2002-04-161-2/+1
| | | | Closes SF bug #518985.
* Fix typo: coverted --> converted. Reported by Francois Pinard.Fred Drake2002-04-091-1/+1
|
* Fix up unescaped tilde; reported by several people.Fred Drake2002-03-181-1/+1
|
* Markup error: braces not properly marked in dictionary displayFred Drake2002-03-161-1/+1
| | | | | grammer productions. Fixes SF bug #520959.
* Revise the markup related to the grammar productions to increase theFred Drake2002-03-155-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 Drake2002-02-221-1/+1
|
* Fix typo reported by François Pinard.Fred Drake2002-01-211-1/+1
|
* Added some missing index entries, noted by L. Peter Deutsch.Fred Drake2001-12-281-0/+2
|
* Update to use the notice environment so a multi-paragraph note can beFred Drake2001-12-141-2/+4
| | | | appropriately marked.
* Update information about __del__() & reference cycles for CPython.Fred Drake2001-12-141-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 ifFred Drake2001-12-141-5/+5
| | | | | they were represented by newlines in the document source. Partially fixes SF bug #493243.
* Fix forMichael W. Hudson2001-12-121-2/+45
| | | | [ #429329 ] actual-parameters *arg, **kws not doc'd
* Add a note about yield requiring a __future__ directive.Fred Drake2001-12-121-0/+10
|
* Clean up a sad sentence in the yield description.Fred Drake2001-12-111-5/+5
|