Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
bb2095f1
Commit
bb2095f1
authored
Oct 06, 2011
by
Éric Araujo
Browse files
Options
Browse Files
Download
Plain Diff
Branch merge
parents
3e961a5f
63ba97b5
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
17 additions
and
17 deletions
+17
-17
Doc/library/sys.rst
Doc/library/sys.rst
+16
-16
Lib/test/test_minidom.py
Lib/test/test_minidom.py
+1
-1
No files found.
Doc/library/sys.rst
View file @
bb2095f1
...
...
@@ -121,6 +121,15 @@ always available.
Use ``'backslashreplace'`` error handler on :exc:`UnicodeEncodeError`.
.. 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.
.. function:: excepthook(type, value, traceback)
This function prints out a given traceback and exception to ``sys.stderr``.
...
...
@@ -185,10 +194,10 @@ always available.
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
:program:`configure` script. Specifically, all configuration files (e.g. the
:file:`pyconfig.h` header file) are installed in the directory
``exec_prefix +
'/lib/pythonversion/config'``, and shared library modules are installed in
``exec_prefix + '/lib/pythonversion/lib-dynload'``, where *version* is equal to
``version[:3]
``.
:file:`pyconfig.h` header file) are installed in the directory
:file:`{exec_prefix}/lib/python{X.Y}/config', and shared library modules are
installed in :file:`{exec_prefix}/lib/python{X.Y}/lib-dynload`, where *X.Y*
is the version number of Python, for example ``3.2
``.
.. data:: executable
...
...
@@ -743,10 +752,10 @@ always available.
independent Python files are installed; by default, this is the string
``'/usr/local'``. This can be set at build time with the ``--prefix``
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
stored in
``prefix + '/include/pythonversion'``, where *version* is equal to
``version[:3]
``.
stored in
:file:`{prefix}/include/python{X.Y}``, where *X.Y* is the version
number of Python, for example ``3.2
``.
.. data:: ps1
...
...
@@ -764,15 +773,6 @@ always available.
implement a dynamic prompt.
.. 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.
.. function:: setcheckinterval(interval)
Set the interpreter's "check interval". This integer value determines how often
...
...
Lib/test/test_minidom.py
View file @
bb2095f1
...
...
@@ -446,7 +446,7 @@ class MinidomTest(unittest.TestCase):
dom
.
unlink
()
self
.
confirm
(
domstr
==
str
.
replace
(
"
\
n
"
,
"
\
r
\
n
"
))
def
test_to
PrettyXML_per
serves_content_of_text_node
(
self
):
def
test_to
prettyxml_pre
serves_content_of_text_node
(
self
):
str
=
'<A>B</A>'
dom
=
parseString
(
str
)
dom2
=
parseString
(
dom
.
toprettyxml
())
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment