| Commit message (Collapse) | Author | Age | Files | Lines |
| |
|
|
|
| |
Move some index entries next to what they are referring to for better
"targetting".
|
| |
|
|
| |
SF patch 102989 by Thomas Wouters
|
| | |
|
| | |
|
| |
|
|
| |
imports. It checks for them now.
|
| |
|
|
| |
This closes SF bug #129759.
|
| |
|
|
| |
Chris Ryland.
|
| | |
|
| |
|
|
| |
<cpr@emsoftware.com>.
|
| |
|
|
| |
Clarify the handling of characters following backslashes in raw strings.
|
| |
|
|
|
|
|
|
| |
supported as of Python 2.1. We still need to
have an entry for this since it is reasonable
for users to want to understand existing code.
This closes SF bug #122715.
|
| | |
|
| |
|
|
| |
This closes (again!) bug #127098.
|
| |
|
|
|
|
|
|
| |
doesn't get triggered by 'return', 'break' or 'continue'. If the
'try-inside-continue' patch does not get accepted before next release, the
'or continue' should be removed ;P
Closes SF patch #103045 and SF bug #127098.
|
| | |
|
| |
|
|
|
| |
additional escape sequences defined for Unicode.
This closes bug #117158.
|
| | |
|
| |
|
|
| |
#102169.
|
| |
|
|
|
|
| |
from right to left!
Closes bug #125391.
|
| |
|
|
|
| |
sequence repitition works just fine with long integers now, so we
should not say that only plain integers are allowed.
|
| |
|
|
|
| |
implement as many of the relevant methods as make sense for the particular
information being modelled.
|
| | |
|
| |
|
|
|
|
|
| |
is encoded in u-LAW format. Based on suggestion from Anthony Baxter
<anthony_baxter@users.sourceforge.net>.
This closes bug #122273.
|
| |
|
|
|
|
|
|
|
|
| |
Show how code can be written to handle __getslice__ & friends in a way that
is compatible with pre-2.0 versions of Python while still working with the
"new" way of handling slicing.
Additional explanation added by Fred Drake.
This closes SourceForge patch #101388.
|
| |
|
|
| |
<lannert@uni-duesseldorf.de>.
|
| |
|
|
| |
reported by Detlef Lannert <lannert@uni-duesseldorf.de>.
|
| |
|
|
|
|
|
| |
Document the __contains__() method.
(Patch slightly modified by FLD.)
This closes SourceForge patch #101387.
|
| | |
|
| |
|
|
|
|
| |
Reference manual docs for augmented assignment.
This closes SourceForge patch #101418.
|
| | |
|
| | |
|
| |
|
|
| |
shortly. Markup also needs checking.
|
| |
|
|
| |
quoting keywords.
|
| | |
|
| |
|
|
|
| |
Document the extended print form. Fred, please double check the
markup!
|
| |
|
|
|
|
|
|
|
|
| |
load mod.submod as m, or mod as m ? Both can be achieved differently, and
unambiguously. Also attempt to document this restriction (editor
appreciated!)
Note that this is an artificial check during compile, because incorporating
this in the grammar is hard, and then adjusting the compiler to do the right
thing with the right nodes is harder.
|
| |
|
|
| |
stand out more.
|
| |
|
|
|
|
|
|
| |
name as n'. By doing some twists and turns, "as" is not a reserved word.
There is a slight change in semantics for 'from module import name' (it will
now honour the 'global' keyword) but only in cases that are explicitly
undocumented.
|
| |
|
|
|
|
|
|
| |
is no __getslice__ available. Also does the same for C extension types.
Includes rudimentary documentation (it could use a cross reference to the
section on slice objects, I couldn't figure out how to do that) and a test
suite for all Python __hooks__ I could think of, including the new
behaviour.
|
| | |
|
| |
|
|
|
| |
Update the grammar to reflect the most recent changes to list
comprehensions.
|
| |
|
|
|
|
| |
http://sourceforge.net/patch/?func=detailpatch&patch_id=100654&group_id=5470
for details.
|
| |
|
|
|
| |
Create a hyperlink between the language reference and documentation for
the built in functions.
|
| |
|
|
|
|
|
|
|
|
|
| |
distutils patches, which I'll leave to the distutils maintainers.
Tip: review the patch like this:
grep "^[\!+-] " <patchfile>
To get a quick and easy way to review the actual changes. Most of the
changes are single-line ones, anyway.
|
| |
|
|
|
| |
__setitem__(), and __delitem__(). Based on related comments from
Barry Warsaw.
|
| |
|
|
|
|
|
|
|
|
| |
Update the "in" / "not in" description to accomodate the current use
of the __contains__() discipline. This patch also incorporates
suggestions from Marc-Andre Lemburg <mal@lemburg.com>, minor markup
revisions from Fred Drake, and some rewording of the first affected
paragraph (also from Fred).
Closes SourceForge patch #100831.
|
| |
|
|
| |
Noted by Nicholas Spies <ns11@voicenet.com>.
|
| |
|
|
|
|
|
|
|
| |
are and are not turned into bound methods; some confusion was noted by
Andrew Dalke.
In particular, it has to be noted that functions located on the class
instance are not turned into any sort of method, only those which are
found via the underlying class.
|
| |
|
|
| |
Carl Feynman <carlf@abinitio.com>.
|
| |
|
|
| |
in certain circumstances. (Apparently, this is a CPython problem.)
|