[Python-checkins] devguide: Remove some trailing whitespace.

georg.brandl python-checkins at python.org
Tue Jan 25 22:21:51 CET 2011


georg.brandl pushed e5bd33465aa9 to devguide:

http://hg.python.org/devguide/rev/e5bd33465aa9
changeset:   202:e5bd33465aa9
tag:         tip
user:        Georg Brandl <georg at python.org>
date:        Tue Jan 25 22:21:44 2011 +0100
summary:
  Remove some trailing whitespace.

files:
  compiler.rst

diff --git a/compiler.rst b/compiler.rst
--- a/compiler.rst
+++ b/compiler.rst
@@ -119,7 +119,7 @@
 
 Do notice that something like 'arguments', which is a node type, is
 represented as a single AST node and not as a sequence of nodes as with
-stmt as one might expect.  
+stmt as one might expect.
 
 All three kinds also have an 'attributes' argument; this is shown by the
 fact that 'attributes' lacks a '|' before it.
@@ -136,11 +136,11 @@
                         arguments_ty args;
                         asdl_seq *body;
                 } FunctionDef;
-                
+
                 struct {
                         expr_ty value;
                 } Return;
-                
+
                 struct {
                         expr_ty value;
                 } Yield;
@@ -249,7 +249,7 @@
 as jumps and 'return' statements).  What this means is that a basic
 block is a chunk of code that starts at the entry point and runs to an
 exit point or the end of the block.
-  
+
 As an example, consider an 'if' statement with an 'else' block.  The
 guard on the 'if' is a basic block which is pointed to by the basic
 block containing the code leading to the 'if' statement.  The 'if'

--
Repository URL: http://hg.python.org/devguide


More information about the Python-checkins mailing list