~pythonregexp2.7/python/issue2636-19

« back to all changes in this revision

Viewing changes to Doc/reference/simple_stmts.rst

  • Committer: Jeffrey C. "The TimeHorse" Jacobs
  • Date: 2008-09-21 13:47:31 UTC
  • mfrom: (39021.1.404 Regexp-2.7)
  • Revision ID: darklord@timehorse.com-20080921134731-rudomuzeh1b2tz1y
Merged in changes from the latest python source snapshot.

Show diffs side-by-side

added added

removed removed

Lines of Context:
229
229
 
230
230
.. productionlist::
231
231
   augmented_assignment_stmt: `target` `augop` (`expression_list` | `yield_expression`)
232
 
   augop: "+=" | "-=" | "*=" | "/=" | "%=" | "**="
 
232
   augop: "+=" | "-=" | "*=" | "/=" | "//=" | "%=" | "**="
233
233
        : | ">>=" | "<<=" | "&=" | "^=" | "|="
234
234
 
235
235
(See section :ref:`primaries` for the syntax definitions for the last three
743
743
the module search path is carried out differently.  The sequence of identifiers
744
744
up to the last dot is used to find a "package"; the final identifier is then
745
745
searched inside the package.  A package is generally a subdirectory of a
746
 
directory on ``sys.path`` that has a file :file:`__init__.py`. [XXX Can't be
747
 
bothered to spell this out right now; see the URL
748
 
http://www.python.org/doc/essays/packages.html for more details, also about how
749
 
the module search works from inside a package.]
 
746
directory on ``sys.path`` that has a file :file:`__init__.py`.
 
747
 
 
748
.. 
 
749
   [XXX Can't be
 
750
   bothered to spell this out right now; see the URL
 
751
   http://www.python.org/doc/essays/packages.html for more details, also about how
 
752
   the module search works from inside a package.]
750
753
 
751
754
.. index:: builtin: __import__
752
755