Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Fix SF bug #1061770: Manual typesets bit-shift operators as guillemet | Fred Drake | 2004-11-11 | 2 | -2/+4 |
| | |||||
* | minor markup nits; fix missing whitespace | Fred Drake | 2004-11-10 | 1 | -2/+2 |
| | |||||
* | clarify discussion of iteration in the section on the "for" statement | Fred Drake | 2004-11-02 | 1 | -2/+4 |
| | | | | (SF bug #829073) | ||||
* | clarify trailing comma in function argument list | Fred Drake | 2004-11-02 | 2 | -6/+6 |
| | | | | (SF bug #798652) | ||||
* | Patch #1042969: add closing brace for \token {generator_expression}. Thanks | Johannes Gijsbers | 2004-10-09 | 1 | -1/+1 |
| | | | | George Yoshida! | ||||
* | Remove claims that Python source code is ASCII. Fixes #1026038. | Martin v. Löwis | 2004-09-14 | 1 | -5/+15 |
| | |||||
* | SF patch #1007189, multi-line imports, for instance: | Anthony Baxter | 2004-08-31 | 1 | -2/+5 |
| | | | | | "from blah import (foo, bar baz, bongo)" | ||||
* | Patch #1011144: Correct regex for coding decls. | Martin v. Löwis | 2004-08-18 | 1 | -1/+1 |
| | |||||
* | This is Mark Russell's patch: | Michael W. Hudson | 2004-08-17 | 1 | -6/+6 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | [ 1009560 ] Fix @decorator evaluation order From the description: Changes in this patch: - Change Grammar/Grammar to require newlines between adjacent decorators. - Fix order of evaluation of decorators in the C (compile.c) and python (Lib/compiler/pycodegen.py) compilers - Add better order of evaluation check to test_decorators.py (test_eval_order) - Update the decorator documentation in the reference manual (improve description of evaluation order and update syntax description) and the comment: Used Brett's evaluation order (see http://mail.python.org/pipermail/python-dev/2004-August/047835.html) (I'm checking this in for Anthony who was having problems getting SF to talk to him) | ||||
* | SF patch #872326: generator expression implementation | Raymond Hettinger | 2004-08-15 | 1 | -1/+46 |
| | | | | | | (Contributed by Jiwon Seo.) Add genexps to the reference manual. | ||||
* | This is my patch | Michael W. Hudson | 2004-08-12 | 1 | -22/+49 |
| | | | | | | | [ 1004703 ] Make func_name writable plus fixing a couple of nits in the documentation changes spotted by MvL and a Misc/NEWS entry. | ||||
* | [Bug #827209] Add footnote from Alex M. about listcomps leaking their index ↵ | Andrew M. Kuchling | 2004-08-07 | 1 | -1/+5 |
| | | | | variables | ||||
* | update to reflect the new significance of the "@" character | Fred Drake | 2004-08-05 | 1 | -2/+2 |
| | |||||
* | Document general mappings for the locals argument for exec and execfile(). | Raymond Hettinger | 2004-08-03 | 1 | -2/+3 |
| | |||||
* | PEP-0318, @decorator-style. In Guido's words: | Anthony Baxter | 2004-08-02 | 1 | -1/+26 |
| | | | | | "@ seems the syntax that everybody can hate equally" Implementation by Mark Russell, from SF #979728. | ||||
* | Whitespace normalization, via reindent.py. | Tim Peters | 2004-07-18 | 1 | -8/+8 |
| | |||||
* | Add a missing space. | Brett Cannon | 2004-06-29 | 1 | -1/+1 |
| | |||||
* | The expression list in inheritance is not optional. Fixes #960448. | Martin v. Löwis | 2004-06-02 | 1 | -1/+1 |
| | | | | Will backport to 2.3. | ||||
* | Move grammar rule for lambda_form into section on lambdas. Fixes #964525. | Martin v. Löwis | 2004-06-02 | 1 | -2/+5 |
| | |||||
* | Fix typo reported in #964592. Will backport to 2.3. | Martin v. Löwis | 2004-06-02 | 1 | -1/+1 |
| | |||||
* | note that descriptor objects must be instances of new-style types | Fred Drake | 2004-05-06 | 1 | -1/+2 |
| | | | | (closes SF bug #817742) | ||||
* | SF bug #940579: section 5.10: 'not' returns boolean, not int | Raymond Hettinger | 2004-04-23 | 1 | -4/+4 |
| | |||||
* | Fix misspelled name. | Raymond Hettinger | 2004-02-08 | 1 | -1/+1 |
| | |||||
* | clean up indexing for None, NotImplemented | Fred Drake | 2004-01-01 | 2 | -5/+3 |
| | | | | closes SF bug #820344 | ||||
* | fix typo and join two paragraphs | Fred Drake | 2003-12-11 | 1 | -2/+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. | ||||
* | clarified (in the 5.14 summary) that tests and comparisons all chain, | Alex Martelli | 2003-11-09 | 1 | -3/+3 |
| | | | | | added a specific \ref to 5.9 in lieu of previous vague "see above". (same as commit of Sun Nov 2 to the release23-maint branch) | ||||
* | Fix a bunch of typos in documentation, docstrings and comments. | Walter Dörwald | 2003-10-20 | 1 | -1/+1 |
| | | | | (From SF patch #810751) | ||||
* | Patch #821093: Fix various typos. | Martin v. Löwis | 2003-10-19 | 2 | -2/+2 |
| | |||||
* | - update to reflect that base classes can be class types as well as | Fred Drake | 2003-09-24 | 1 | -2/+5 |
| | | | | | | | | "classic" class objects [partially fixes SF bug #453684] - add note that new-style classes can use descriptors to implement instance variables in different ways | ||||
* | SF 810242. Fix doubled word errors. | Raymond Hettinger | 2003-09-22 | 1 | -1/+1 |
| | |||||
* | Elaborate the explanation of different flavors of _* identifiers. | Fred Drake | 2003-09-06 | 1 | -16/+30 |
| | | | | Fixes SF bug #520325. | ||||
* | - create a hyperlink for a section reference (also more robust in the | Fred Drake | 2003-09-06 | 1 | -4/+4 |
| | | | | | face of section re-ordering) - fix minor markup nits for better presentation | ||||
* | Added doubled word warnings. | Raymond Hettinger | 2003-08-25 | 1 | -1/+1 |
| | |||||
* | SF patch#786531 'the the' typo. Contributed by George Yoshida | Raymond Hettinger | 2003-08-12 | 1 | -1/+1 |
| | |||||
* | Fix representation of ^= operator in __ixor__() documentation. | Fred Drake | 2003-07-23 | 1 | -1/+1 |
| | | | | Closes SF bug #776181. Should be backported. | ||||
* | Minor corrections. | Raymond Hettinger | 2003-07-17 | 1 | -1/+1 |
| | |||||
* | - improve the description of how user-defined method | Fred Drake | 2003-07-17 | 1 | -25/+85 |
| | | | | | | | | objects get made - improve the description of attribute retrieval from classes and class instances - add brief documentation of static method and class method objects. | ||||
* | Clarify the lack of relationship between rich comparison operators. | Raymond Hettinger | 2003-07-16 | 1 | -0/+5 |
| | | | | Prompted by a discussion on comp.lang.python. | ||||
* | Indexing is a mess; try to get the link targets closer to the relevant | Fred Drake | 2003-07-15 | 2 | -14/+11 |
| | | | | text. There needs to be a better way. | ||||
* | Try to clean up some indexing relevant to the import statement. | Fred Drake | 2003-07-15 | 1 | -3/+3 |
| | | | | Pertains to SF bug #518989. | ||||
* | Discuss calling new-style types. | Fred Drake | 2003-07-15 | 1 | -1/+9 |
| | | | | Closes SF bug #453683. | ||||
* | Minor fixes to punctuation and grammar. | Raymond Hettinger | 2003-06-29 | 1 | -5/+5 |
| | |||||
* | Add definitions of the test and testlist symbols in the grammar so | Fred Drake | 2003-06-27 | 1 | -0/+5 |
| | | | | | there are no gaps in the definitions. Closes SF bug #726150. | ||||
* | * Markup nits for the Invoking Descriptors section | Raymond Hettinger | 2003-06-27 | 1 | -7/+121 |
| | | | | | | | * Documented __slots__ * Documented __metaclass__ Shamelessly plagarized from Guido's tutorial. | ||||
* | SF patch #760792: "wo" in "word" now valid but not documented as such | Raymond Hettinger | 2003-06-26 | 1 | -4/+7 |
| | | | | | | Revised version of a contribution from Gerrit Holl. Update the docs for the extended behavior of __contains__ | ||||
* | * Fixed an unmatched parenthesis early in the text. | Raymond Hettinger | 2003-06-26 | 1 | -2/+10 |
| | | | | | * Clarified the meaning of lexicographic sequence ordering as discussed on comp.lang.python: http://groups.google.com/groups?th=e163c9f9ba114493 | ||||
* | remove _ from label: LaTeX rejects this due to all the magic we use to | Fred Drake | 2003-06-26 | 1 | -1/+1 |
| | | | | get the _ character to format like a normal character | ||||
* | * Document how descriptors are invoked. | Raymond Hettinger | 2003-06-25 | 1 | -3/+63 |
| | | | | * Fix minor parenthesis matching errors in ref3.tex. | ||||
* | Patch #755683: Document that there might be a maximum indentation limit. | Martin v. Löwis | 2003-06-21 | 1 | -1/+3 |
| | | | | Fixes #700827 |