[Python-checkins] r77299 - in python/branches/py3k: Doc/library/functions.rst Doc/library/readline.rst Doc/library/runpy.rst Doc/whatsnew/2.7.rst

ezio.melotti python-checkins at python.org
Mon Jan 4 10:29:10 CET 2010


Author: ezio.melotti
Date: Mon Jan  4 10:29:10 2010
New Revision: 77299

Log:
Merged revisions 77298 via svnmerge from 
svn+ssh://pythondev@svn.python.org/python/trunk

........
  r77298 | ezio.melotti | 2010-01-04 11:00:11 +0200 (Mon, 04 Jan 2010) | 1 line
  
  fixed markup errors
........


Modified:
   python/branches/py3k/   (props changed)
   python/branches/py3k/Doc/library/functions.rst
   python/branches/py3k/Doc/library/readline.rst
   python/branches/py3k/Doc/library/runpy.rst
   python/branches/py3k/Doc/whatsnew/2.7.rst

Modified: python/branches/py3k/Doc/library/functions.rst
==============================================================================
--- python/branches/py3k/Doc/library/functions.rst	(original)
+++ python/branches/py3k/Doc/library/functions.rst	Mon Jan  4 10:29:10 2010
@@ -142,7 +142,7 @@
 .. function:: compile(source, filename, mode, flags=0, dont_inherit=False)
 
    Compile the *source* into a code or AST object.  Code objects can be executed
-   by:func:`exec` or :func:`eval`.  *source* can either be a string or an AST
+   by :func:`exec` or :func:`eval`.  *source* can either be a string or an AST
    object.  Refer to the :mod:`ast` module documentation for information on how
    to work with AST objects.
 

Modified: python/branches/py3k/Doc/library/readline.rst
==============================================================================
--- python/branches/py3k/Doc/library/readline.rst	(original)
+++ python/branches/py3k/Doc/library/readline.rst	Mon Jan  4 10:29:10 2010
@@ -14,7 +14,7 @@
 interactive prompt  and the prompts offered by the built-in :func:`input`
 function.
 
-..note::
+.. note::
 
   On MacOS X the :mod:`readline` module can be implemented using
   the ``libedit`` library instead of GNU readline.

Modified: python/branches/py3k/Doc/library/runpy.rst
==============================================================================
--- python/branches/py3k/Doc/library/runpy.rst	(original)
+++ python/branches/py3k/Doc/library/runpy.rst	Mon Jan  4 10:29:10 2010
@@ -43,7 +43,7 @@
 
    ``__file__`` is set to the name provided by the module loader. If the
    loader does not make filename information available, this variable is set
-   to `:const:`None`.
+   to :const:`None`.
 
    ``__loader__`` is set to the PEP 302 module loader used to retrieve the
    code for the module (This loader may be a wrapper around the standard

Modified: python/branches/py3k/Doc/whatsnew/2.7.rst
==============================================================================
--- python/branches/py3k/Doc/whatsnew/2.7.rst	(original)
+++ python/branches/py3k/Doc/whatsnew/2.7.rst	Mon Jan  4 10:29:10 2010
@@ -740,7 +740,7 @@
   global site-packages directories, and
   :func:`getusersitepackages` returns the path of the user's
   site-packages directory.
-  :func:`getuserbase` returns the value of the :envvar:``USER_BASE``
+  :func:`getuserbase` returns the value of the :envvar:`USER_BASE`
   environment variable, giving the path to a directory that can be used
   to store data.
   (Contributed by Tarek Ziade; :issue:`6693`.)


More information about the Python-checkins mailing list