Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Fix grammar (it's -> its). | Neil Schemenauer | 2005-06-18 | 1 | -1/+1 |
| | |||||
* | update documentation on what constitutes a line in a source file | Fred Drake | 2005-05-25 | 1 | -5/+12 |
| | | | | (closes SF bug #1167922) | ||||
* | minor markup nits; fix missing whitespace | Fred Drake | 2004-11-10 | 1 | -2/+2 |
| | |||||
* | Remove claims that Python source code is ASCII. Fixes #1026038. | Martin v. Löwis | 2004-09-14 | 1 | -5/+15 |
| | |||||
* | Patch #1011144: Correct regex for coding decls. | Martin v. Löwis | 2004-08-18 | 1 | -1/+1 |
| | |||||
* | update to reflect the new significance of the "@" character | Fred Drake | 2004-08-05 | 1 | -2/+2 |
| | |||||
* | Fix typo reported in #964592. Will backport to 2.3. | Martin v. Löwis | 2004-06-02 | 1 | -1/+1 |
| | |||||
* | Fix misspelled name. | Raymond Hettinger | 2004-02-08 | 1 | -1/+1 |
| | |||||
* | - Removed FutureWarnings related to hex/oct literals and conversions | Guido van Rossum | 2003-11-29 | 1 | -13/+11 |
| | | | | | | | | | | and left shifts. (Thanks to Kalle Svensson for SF patch 849227.) This addresses most of the remaining semantic changes promised by PEP 237, except for repr() of a long, which still shows the trailing 'L'. The PEP appears to promise warnings for operations that changed semantics compared to Python 2.3, but this is not implemented; we've suffered through enough warnings related to hex/oct literals and I think it's best to be silent now. | ||||
* | Elaborate the explanation of different flavors of _* identifiers. | Fred Drake | 2003-09-06 | 1 | -16/+30 |
| | | | | Fixes SF bug #520325. | ||||
* | Patch #755683: Document that there might be a maximum indentation limit. | Martin v. Löwis | 2003-06-21 | 1 | -1/+3 |
| | | | | Fixes #700827 | ||||
* | SF patch #634866: Alex Martelli's corrections to the ref manual. | Raymond Hettinger | 2003-01-19 | 1 | -9/+18 |
| | | | | | Backport candidate. All but one or two of these changes are applicable to 2.2.2. | ||||
* | Relocate an index entry so named anchors are not generated in a section head. | Fred Drake | 2002-10-24 | 1 | -1/+2 |
| | | | | Closes SF bug #546579. | ||||
* | Remove mentionings of DOS. | Martin v. Löwis | 2002-10-10 | 1 | -1/+1 |
| | |||||
* | Another try at clarifying what goes into and comes out of Unicode objects. | Fred Drake | 2002-09-24 | 1 | -27/+46 |
| | |||||
* | Ignore encoding declarations inside strings. Fixes #603509. | Martin v. Löwis | 2002-09-03 | 1 | -1/+1 |
| | |||||
* | Apply character{} markup. | Raymond Hettinger | 2002-08-07 | 1 | -16/+17 |
| | |||||
* | Fix up some more markup problems. | Fred Drake | 2002-08-07 | 1 | -8/+9 |
| | |||||
* | Document handling of raw-unicode-escapes. Closes SF bug 587087. | Raymond Hettinger | 2002-08-06 | 1 | -0/+8 |
| | |||||
* | Fix the markup so it doesn't break formatting. | Fred Drake | 2002-08-06 | 1 | -4/+4 |
| | |||||
* | Patch #534304: Implement phase 1 of PEP 263. | Martin v. Löwis | 2002-08-04 | 1 | -5/+39 |
| | |||||
* | 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. | ||||
* | Minor change to an index entry. | Fred Drake | 2002-04-23 | 1 | -1/+1 |
| | |||||
* | Revise the markup related to the grammar productions to increase the | Fred Drake | 2002-03-15 | 1 | -2/+2 |
| | | | | | | level of predictability. This is not really "good" markup, but is arguably better than we had before. This closes SF bug #523117. | ||||
* | 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 | ||||
* | 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. :-( | ||||
* | Clean up some markup cruft. A number of the macros that take no | Fred Drake | 2001-11-28 | 1 | -7/+7 |
| | | | | | | | | 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. | ||||
* | SF patch #455966: Allow leading 0 in float/imag literals. | Tim Peters | 2001-08-30 | 1 | -7/+7 |
| | | | | Consequences for Jython still unknown (but raised on Jython-Dev). | ||||
* | Add material about the "r" and "u" prefixes for string literals; should | Fred Drake | 2001-08-14 | 1 | -8/+14 |
| | | | | | | | be reviewed for clarity. Work around a bogosity in the HTML version of the escape sequences table conversion. | ||||
* | "Thin" version of floor division docs: add // to the list of operators | Fred Drake | 2001-08-08 | 1 | -3/+3 |
| | | | | | | and //= to the list of other delimiter tokens. I'll work on it again when it's not so late... | ||||
* | Removed unnecessary section "Unicode literals"; all the discussion is | Fred Drake | 2001-07-20 | 1 | -6/+1 |
| | | | | | | | already present in the "String literals" section, including comments on the "u" prefix and the additional escape sequences used for Unicode. This relates to SF bug #442526. | ||||
* | Fix typo in description of raw strings: "value" --> "valid" | Fred Drake | 2001-07-20 | 1 | -1/+1 |
| | | | | This closes SF bug #443059. | ||||
* | Change the grammar productions to use the new productionlist environment; | Fred Drake | 2001-07-06 | 1 | -38/+68 |
| | | | | | this supports a hyperlinked version of the grammar that can make tracking down details and definitions a little easier. | ||||
* | Fix typo | Andrew M. Kuchling | 2001-06-23 | 1 | -1/+1 |
| | |||||
* | Add "yeild" to the list of keywords. | Fred Drake | 2001-06-23 | 1 | -2/+18 |
| | | | | Fix a very minor (but annoying when looking for things!) markup nit. | ||||
* | Feeble attempt to repair obsolete info about hex escapes. | Tim Peters | 2001-02-14 | 1 | -4/+2 |
| | |||||
* | Steve Holden <sholden@holdenweb.com>: | Fred Drake | 2001-01-09 | 1 | -13/+13 |
| | | | | Clarify the handling of characters following backslashes in raw strings. | ||||
* | 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. | ||||
* | 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. | ||||
* | Rough and incomplete documentation on augmented assignment, which follows | Thomas Wouters | 2000-08-24 | 1 | -0/+4 |
| | | | | shortly. Markup also needs checking. | ||||
* | Merged changes from the 1.5.2p2 release. | Fred Drake | 2000-04-03 | 1 | -5/+9 |
| | |||||
* | Added note about __builtin__._ to section dicussing classes of | Fred Drake | 1999-03-05 | 1 | -5/+15 |
| | | | | reserved names, just to avoid confusion on the part of users. | ||||
* | Revised description of blank line handling for the interpreter, based | Fred Drake | 1999-02-22 | 1 | -7/+11 |
| | | | | on a comment from /F. | ||||
* | Fix encoding of \ in some string literals in the discussion of "raw" | Fred Drake | 1998-10-01 | 1 | -2/+2 |
| | | | | strings. Reported by Lorenzo M. Catucci <lorenzo@argon.roma2.infn.it>. | ||||
* | Make sure all chapters, sections, and subsections have a \label to give them | Fred Drake | 1998-07-28 | 1 | -22/+22 |
| | | | | semantic file names in the HTML. No more node#.html files! | ||||
* | Converted some {tabular}s to use {tablei*} environments. | Fred Drake | 1998-07-24 | 1 | -34/+22 |
| | |||||
* | e.g. -> e.g., | Guido van Rossum | 1998-07-24 | 1 | -4/+4 |
| | |||||
* | Lots of changes to get this in sync with the Frame version. | Guido van Rossum | 1998-06-15 | 1 | -50/+217 |
| | | | | | Added raw strings, imaginary literals, assert and exec (!) keywords, a table about Resererved classes of identifiers, and more. | ||||
* | Updated markup style (got rid of \verb@...@, mostly). | Fred Drake | 1998-05-14 | 1 | -34/+34 |
| | |||||
* | The Python Reference Manual. | Fred Drake | 1998-05-06 | 1 | -0/+372 |
| |