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
eb25fb7a
Commit
eb25fb7a
authored
Feb 23, 2012
by
Georg Brandl
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix markup errors.
parent
ba528f57
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
3 deletions
+5
-3
Doc/library/subprocess.rst
Doc/library/subprocess.rst
+1
-1
Doc/library/sys.rst
Doc/library/sys.rst
+4
-2
No files found.
Doc/library/subprocess.rst
View file @
eb25fb7a
...
@@ -207,7 +207,7 @@ default values. The arguments that are most commonly needed are:
...
@@ -207,7 +207,7 @@ default values. The arguments that are most commonly needed are:
When *stdout* or *stderr* are pipes and *universal_newlines* is
When *stdout* or *stderr* are pipes and *universal_newlines* is
:const:`True` then the output data is assumed to be encoded as UTF-8 and
:const:`True` then the output data is assumed to be encoded as UTF-8 and
will automatically be decoded to text. All line endings will be converted
will automatically be decoded to text. All line endings will be converted
to ``'\n'`` as described for the universal newlines `'U'`` mode argument
to ``'\n'`` as described for the universal newlines `
`
'U'`` mode argument
to :func:`open`.
to :func:`open`.
If *shell* is :const:`True`, the specified command will be executed through
If *shell* is :const:`True`, the specified command will be executed through
...
...
Doc/library/sys.rst
View file @
eb25fb7a
...
@@ -195,7 +195,7 @@ always available.
...
@@ -195,7 +195,7 @@ always available.
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
:file:`pyconfig.h` header file) are installed in the directory
:file:`{exec_prefix}/lib/python{X.Y}/config
'
, and shared library modules are
: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*
installed in :file:`{exec_prefix}/lib/python{X.Y}/lib-dynload`, where *X.Y*
is the version number of Python, for example ``3.2``.
is the version number of Python, for example ``3.2``.
...
@@ -750,12 +750,14 @@ always available.
...
@@ -750,12 +750,14 @@ always available.
====================== ===========================
====================== ===========================
.. seealso::
.. seealso::
:attr:`os.name` has a coarser granularity. :func:`os.uname` gives
:attr:`os.name` has a coarser granularity. :func:`os.uname` gives
system-dependent version information.
system-dependent version information.
The :mod:`platform` module provides detailed checks for the
The :mod:`platform` module provides detailed checks for the
system's identity.
system's identity.
.. data:: prefix
.. data:: prefix
A string giving the site-specific directory prefix where the platform
A string giving the site-specific directory prefix where the platform
...
@@ -764,7 +766,7 @@ always available.
...
@@ -764,7 +766,7 @@ always available.
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 :file:`{prefix}/lib/python{X.Y}``
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 :file:`{prefix}/include/python{X.Y}`
`
, where *X.Y* is the version
stored in :file:`{prefix}/include/python{X.Y}`, where *X.Y* is the version
number of Python, for example ``3.2``.
number of Python, for example ``3.2``.
...
...
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