summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorEzio Melotti <ezio.melotti@gmail.com>2010-04-05 08:16:41 (GMT)
committerEzio Melotti <ezio.melotti@gmail.com>2010-04-05 08:16:41 (GMT)
commit9ccc58113e805a3def5ca4c3cf0bd620c92fafde (patch)
tree7ffd689d11b1a35d15e94ffa3e8f42a223ddf8a1 /Doc
parent01fa86a0bd91fff8ca3954ac7691729e0aa3c7bc (diff)
downloadcpython-9ccc58113e805a3def5ca4c3cf0bd620c92fafde.zip
cpython-9ccc58113e805a3def5ca4c3cf0bd620c92fafde.tar.gz
cpython-9ccc58113e805a3def5ca4c3cf0bd620c92fafde.tar.bz2
Fix markup errors.
Diffstat (limited to 'Doc')
-rw-r--r--Doc/library/struct.rst2
-rw-r--r--Doc/library/subprocess.rst2
-rw-r--r--Doc/whatsnew/2.7.rst2
3 files changed, 3 insertions, 3 deletions
diff --git a/Doc/library/struct.rst b/Doc/library/struct.rst
index ea6b416..492aa1d 100644
--- a/Doc/library/struct.rst
+++ b/Doc/library/struct.rst
@@ -129,7 +129,7 @@ Notes:
called to convert the argument to an integer before packing. If no
:meth:`__index__` method exists, or the call to :meth:`__index__` raises
:exc:`TypeError`, then the :meth:`__int__` method is tried. However, the use
- of `__int__` is deprecated, and will raise :exc:`DeprecationWarning`.
+ of :meth:`__int__` is deprecated, and will raise :exc:`DeprecationWarning`.
.. versionchanged:: 2.7
Use of the :meth:`__index__` method for non-integers is new in 2.7.
diff --git a/Doc/library/subprocess.rst b/Doc/library/subprocess.rst
index 439a46d..19a8b6b 100644
--- a/Doc/library/subprocess.rst
+++ b/Doc/library/subprocess.rst
@@ -321,7 +321,7 @@ Instances of the :class:`Popen` class have the following methods:
.. note::
On Windows, SIGTERM is an alias for :meth:`terminate`. CTRL_C_EVENT and
- CTRL_BREAK_EVENT can be sent to processes started with a `creationflags`
+ CTRL_BREAK_EVENT can be sent to processes started with a *creationflags*
parameter which includes `CREATE_NEW_PROCESS_GROUP`.
.. versionadded:: 2.6
diff --git a/Doc/whatsnew/2.7.rst b/Doc/whatsnew/2.7.rst
index dfc158c..9590dce 100644
--- a/Doc/whatsnew/2.7.rst
+++ b/Doc/whatsnew/2.7.rst
@@ -894,7 +894,7 @@ changes, or look through the Subversion logs for all the details.
giving the source address that will be used for the connection.
(Contributed by Eldon Ziegler; :issue:`3972`.)
- The :meth:`recv_into` and `recvfrom_into` methods will now write
+ The :meth:`recv_into` and :meth:`recvfrom_into` methods will now write
into objects that support the buffer API, most usefully
the :class:`bytearray` and :class:`memoryview` objects. (Implemented by
Antoine Pitrou; :issue:`8104`.)