summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorMartin Panter <vadmium+py@gmail.com>2016-04-19 04:03:41 (GMT)
committerMartin Panter <vadmium+py@gmail.com>2016-04-19 04:03:41 (GMT)
commit8f26565ba9e3d32f6c953b04c1b9f9d13c2e1818 (patch)
tree6ed1a5aaa6ede819ec672beae759c18f6d428121 /Doc
parent0d88c652318c4c5eed77fd2e78e9e955ffa5c8d1 (diff)
downloadcpython-8f26565ba9e3d32f6c953b04c1b9f9d13c2e1818.zip
cpython-8f26565ba9e3d32f6c953b04c1b9f9d13c2e1818.tar.gz
cpython-8f26565ba9e3d32f6c953b04c1b9f9d13c2e1818.tar.bz2
Fix spelling (inital), grammar (may translates) in documentation, comments
Diffstat (limited to 'Doc')
-rw-r--r--Doc/library/tempfile.rst2
-rw-r--r--Doc/library/test.rst2
-rw-r--r--Doc/whatsnew/2.2.rst2
3 files changed, 3 insertions, 3 deletions
diff --git a/Doc/library/tempfile.rst b/Doc/library/tempfile.rst
index b714d0f..486c18d 100644
--- a/Doc/library/tempfile.rst
+++ b/Doc/library/tempfile.rst
@@ -256,7 +256,7 @@ to specify the directory and this is the recommend approach.
module.
If ``tempdir`` is unset or ``None`` at any call to any of the above
- functions except :func:`gettempprefix` it is initalized following the
+ functions except :func:`gettempprefix` it is initialized following the
algorithm described in :func:`gettempdir`.
.. _tempfile-examples:
diff --git a/Doc/library/test.rst b/Doc/library/test.rst
index db2da1b..a5ce2ca 100644
--- a/Doc/library/test.rst
+++ b/Doc/library/test.rst
@@ -550,7 +550,7 @@ The :mod:`test.support` module defines the following functions:
or passed to an external program (i.e. the ``-accept`` argument to
openssl's s_server mode). Always prefer :func:`bind_port` over
:func:`find_unused_port` where possible. Using a hard coded port is
- discouraged since it can makes multiple instances of the test impossible to
+ discouraged since it can make multiple instances of the test impossible to
run simultaneously, which is a problem for buildbots.
diff --git a/Doc/whatsnew/2.2.rst b/Doc/whatsnew/2.2.rst
index 75e176c..38751ea 100644
--- a/Doc/whatsnew/2.2.rst
+++ b/Doc/whatsnew/2.2.rst
@@ -758,7 +758,7 @@ Here are the changes 2.2 introduces:
operators.
* Python 2.2 supports some command-line arguments for testing whether code will
- works with the changed division semantics. Running python with :option:`-Q
+ work with the changed division semantics. Running python with :option:`-Q
warn` will cause a warning to be issued whenever division is applied to two
integers. You can use this to find code that's affected by the change and fix
it. By default, Python 2.2 will simply perform classic division without a