Branch merge

This commit is contained in:
Éric Araujo 2011-10-06 13:19:34 +02:00
commit e954ecb9ba
2 changed files with 19 additions and 19 deletions

View File

@ -95,6 +95,17 @@ always available.
customized by assigning another one-argument function to ``sys.displayhook``. customized by assigning another one-argument function to ``sys.displayhook``.
.. data:: dont_write_bytecode
If this is true, Python won't try to write ``.pyc`` or ``.pyo`` files on the
import of source modules. This value is initially set to ``True`` or
``False`` depending on the :option:`-B` command line option and the
:envvar:`PYTHONDONTWRITEBYTECODE` environment variable, but you can set it
yourself to control bytecode file generation.
.. versionadded:: 2.6
.. function:: excepthook(type, value, traceback) .. function:: excepthook(type, value, traceback)
This function prints out a given traceback and exception to ``sys.stderr``. This function prints out a given traceback and exception to ``sys.stderr``.
@ -196,10 +207,10 @@ always available.
Python files are installed; by default, this is also ``'/usr/local'``. This can Python files are installed; by default, this is also ``'/usr/local'``. This can
be set at build time with the ``--exec-prefix`` argument to the be set at build time with the ``--exec-prefix`` argument to the
:program:`configure` script. Specifically, all configuration files (e.g. the :program:`configure` script. Specifically, all configuration files (e.g. the
:file:`pyconfig.h` header file) are installed in the directory ``exec_prefix + :file:`pyconfig.h` header file) are installed in the directory
'/lib/pythonversion/config'``, and shared library modules are installed in :file:`{exec_prefix}/lib/python{X.Y}/config', and shared library modules are
``exec_prefix + '/lib/pythonversion/lib-dynload'``, where *version* is equal to installed in :file:`{exec_prefix}/lib/python{X.Y}/lib-dynload`, where *X.Y*
``version[:3]``. is the version number of Python, for example ``2.7``.
.. data:: executable .. data:: executable
@ -755,10 +766,10 @@ always available.
independent Python files are installed; by default, this is the string independent Python files are installed; by default, this is the string
``'/usr/local'``. This can be set at build time with the ``--prefix`` ``'/usr/local'``. This can be set at build time with the ``--prefix``
argument to the :program:`configure` script. The main collection of Python argument to the :program:`configure` script. The main collection of Python
library modules is installed in the directory ``prefix + '/lib/pythonversion'`` library modules is installed in the directory :file:`{prefix}/lib/python{X.Y}``
while the platform independent header files (all except :file:`pyconfig.h`) are while the platform independent header files (all except :file:`pyconfig.h`) are
stored in ``prefix + '/include/pythonversion'``, where *version* is equal to stored in :file:`{prefix}/include/python{X.Y}``, where *X.Y* is the version
``version[:3]``. number of Python, for example ``2.7``.
.. data:: ps1 .. data:: ps1
@ -786,17 +797,6 @@ always available.
.. versionadded:: 2.6 .. versionadded:: 2.6
.. data:: dont_write_bytecode
If this is true, Python won't try to write ``.pyc`` or ``.pyo`` files on the
import of source modules. This value is initially set to ``True`` or ``False``
depending on the ``-B`` command line option and the ``PYTHONDONTWRITEBYTECODE``
environment variable, but you can set it yourself to control bytecode file
generation.
.. versionadded:: 2.6
.. function:: setcheckinterval(interval) .. function:: setcheckinterval(interval)
Set the interpreter's "check interval". This integer value determines how often Set the interpreter's "check interval". This integer value determines how often

View File

@ -439,7 +439,7 @@ class MinidomTest(unittest.TestCase):
dom.unlink() dom.unlink()
self.confirm(domstr == str.replace("\n", "\r\n")) self.confirm(domstr == str.replace("\n", "\r\n"))
def test_toPrettyXML_perserves_content_of_text_node(self): def test_toprettyxml_preserves_content_of_text_node(self):
str = '<A>B</A>' str = '<A>B</A>'
dom = parseString(str) dom = parseString(str)
dom2 = parseString(dom.toprettyxml()) dom2 = parseString(dom.toprettyxml())