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
0ba92b24
Commit
0ba92b24
authored
Jun 22, 2008
by
Georg Brandl
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Turn section references into proper cross-references.
parent
74a6ba8f
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
12 additions
and
15 deletions
+12
-15
Doc/library/os.rst
Doc/library/os.rst
+9
-13
Doc/library/popen2.rst
Doc/library/popen2.rst
+1
-2
Doc/library/subprocess.rst
Doc/library/subprocess.rst
+2
-0
No files found.
Doc/library/os.rst
View file @
0ba92b24
...
...
@@ -363,8 +363,7 @@ These functions create new file objects. (See also :func:`open`.)
.. deprecated:: 2.6
This function is obsolete. Use the :mod:`subprocess` module. Check
specially the *Replacing Older Functions with the subprocess Module*
section in that documentation page.
especially the :ref:`subprocess-replacements` section.
.. versionchanged:: 2.0
This function worked unreliably under Windows in earlier versions of Python.
...
...
@@ -413,9 +412,8 @@ functions, see :ref:`popen2-flow-control`.
child_stdout)``.
.. deprecated:: 2.6
All of the :func:`popen\*` functions are obsolete. Use the :mod:`subprocess`
module. Check specially the *Replacing Older Functions with the
subprocess Module* section in that documentation page.
This function is obsolete. Use the :mod:`subprocess` module. Check
especially the :ref:`subprocess-replacements` section.
Availability: Macintosh, Unix, Windows.
...
...
@@ -428,9 +426,8 @@ functions, see :ref:`popen2-flow-control`.
child_stdout, child_stderr)``.
.. deprecated:: 2.6
All of the :func:`popen\*` functions are obsolete. Use the :mod:`subprocess`
module. Check specially the *Replacing Older Functions with the
subprocess Module* section in that documentation page.
This function is obsolete. Use the :mod:`subprocess` module. Check
especially the :ref:`subprocess-replacements` section.
Availability: Macintosh, Unix, Windows.
...
...
@@ -443,9 +440,8 @@ functions, see :ref:`popen2-flow-control`.
child_stdout_and_stderr)``.
.. deprecated:: 2.6
All of the :func:`popen\*` functions are obsolete. Use the :mod:`subprocess`
module. Check specially the *Replacing Older Functions with the
subprocess Module* section in that documentation page.
This function is obsolete. Use the :mod:`subprocess` module. Check
especially the :ref:`subprocess-replacements` section.
Availability: Macintosh, Unix, Windows.
...
...
@@ -1848,8 +1844,8 @@ written in Python, such as a mail server's external command delivery program.
The :mod:`subprocess` module provides more powerful facilities for spawning new
processes and retrieving their results; using that module is preferable to using
this function.
Check specially the *Replacing Older Functions with
the
subprocess Module* section in that documentation page
.
this function.
Use the :mod:`subprocess` module. Check especially
the
:ref:`subprocess-replacements` section
.
.. function:: times()
...
...
Doc/library/popen2.rst
View file @
0ba92b24
...
...
@@ -10,8 +10,7 @@
.. deprecated:: 2.6
This module is obsolete. Use the :mod:`subprocess` module. Check
specially the *Replacing Older Functions with the subprocess Module*
section in that documentation page.
especially the :ref:`subprocess-replacements` section.
This module allows you to spawn processes and connect to their
input/output/error pipes and obtain their return codes under Unix and Windows.
...
...
Doc/library/subprocess.rst
View file @
0ba92b24
...
...
@@ -273,6 +273,8 @@ The following attributes are also available:
``N`` (Unix only).
.. _subprocess-replacements:
Replacing Older Functions with the subprocess Module
----------------------------------------------------
...
...
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