Skip to content

Commit 9e10efa

Browse files
committed
Merge remote-tracking branch 'upstream/master'
2 parents c95f0d0 + fc48746 commit 9e10efa

File tree

12 files changed

+37
-15
lines changed

12 files changed

+37
-15
lines changed

docs/_templates/sidebarintro.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ <h3>Donate</h3>
2121
<h3>Contributors</h3>
2222
<p>
2323
This guide is the result of the collaboration of
24-
<a href="https://github.com/kennethreitz/python-guide/graphs/contributors">135+ people</a>
24+
<a href="https://github.com/kennethreitz/python-guide/graphs/contributors">hundreds of people</a>
2525
around the world, and your contributions
2626
<a href="http://docs.python-guide.org/en/latest/notes/contribute/">are welcome</a>!
2727
</p>

docs/dev/env.rst

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -270,6 +270,11 @@ most out of using Python interactively. Its main components are:
270270
271271
$ pip install ipython
272272
273+
To download and install IPython with all it's optional dependencies for the notebook, qtconsole, tests, and other functionalities
274+
275+
.. code-block:: console
276+
277+
$ pip install ipython[all]
273278
274279
BPython
275280
-------

docs/intro/documentation.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ both popular and exotic.
2323
pydoc
2424
-----
2525

26-
:program:`pydoc` is a utlity that is installed when you install Python.
26+
:program:`pydoc` is a utility that is installed when you install Python.
2727
It allows you to quickly retrieve and search for documentation from your
2828
shell. For example, if you needed a quick refresher on the
2929
:mod:`time` module, pulling up documentation would be as simple as

docs/scenarios/admin.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -255,8 +255,8 @@ system. `Puppet Forge <https://forge.puppetlabs.com/>`_ is a repository for
255255
modules written by the community for Open Source and Enterprise Puppet.
256256

257257
Puppet Agents are installed on nodes whose state needs to be monitored or
258-
changed. A desginated server known as the Puppet Master is responsible for
259-
orchastrating the agent nodes.
258+
changed. A designated server known as the Puppet Master is responsible for
259+
orchestrating the agent nodes.
260260

261261
Agent nodes send basic facts about the system such as to the operating system,
262262
kernel, architecture, ip address, hostname etc. to the Puppet Master.

docs/scenarios/gui.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ and the mailing list https://groups.google.com/forum/#!forum/project-camelot
1515

1616
Cocoa
1717
-----
18-
.. note:: The Cocoa framework is only available on OS X. Don't pick this if you're writing a cross-platform application!
18+
.. note:: The Cocoa framework is only available on OS X. Don't pick this if you're writing a cross-platform application!
1919

2020
GTk
2121
---

docs/shipping/freezing.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ Prerequisite is to have installed :ref:`Python, Setuptools and pywin32 dependenc
107107
- `Manual <http://www.pyinstaller.org/export/d3398dd79b68901ae1edd761f3fe0f4ff19cfb1a/project/doc/Manual.html?format=raw>`_
108108

109109

110-
OS X
110+
OS X
111111
----
112112

113113

docs/shipping/packaging.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ The downside of distributing code like this is that it relies on the
2323
recipient understanding how to install the required version of Python,
2424
and being able and willing to use tools such as pip to install your code's
2525
other dependencies. This is fine when distributing to other developers, but
26-
makes this method unsuitable for distributing applications to end-uers.
26+
makes this method unsuitable for distributing applications to end-users.
2727

2828
The `Python Packaging Guide <https://python-packaging-user-guide.readthedocs.org/en/latest/>`_
2929
provides an extensive guide on creating and maintaining Python packages.

docs/starting/install/osx.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ software over a network (usually the Internet) with a single command
7373
capability to your own Python software with very little work.
7474

7575
``pip`` is a tool for easily installing and managing Python packages,
76-
that is recommended over ``easy_install``. It is superior to ``easy_install`` in `several ways <https://python-packaging-user-guide.readthedocs.org/en/latest/pip_easy_install.html#pip-vs-easy-install>`_,
76+
that is recommended over ``easy_install``. It is superior to ``easy_install`` in `several ways <https://python-packaging-user-guide.readthedocs.org/en/latest/pip_easy_install/#pip-vs-easy-install>`_,
7777
and is actively maintained.
7878

7979

docs/starting/pip-virtualenv.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Further Configuration of Pip and Virtualenv
66
Requiring an active virtual environment for ``pip``
77
---------------------------------------------------
88

9-
By now it should be clear that using virtual envirtonments is a great way to
9+
By now it should be clear that using virtual environments is a great way to
1010
keep your development environment clean and keeping different projects'
1111
requirements separate.
1212

@@ -71,7 +71,7 @@ add the following lines to this new file:
7171
7272
7373
You will of course need to install some packages globally (usually ones that
74-
you use across different projects consistenly) and this can be accomplished by
74+
you use across different projects consistently) and this can be accomplished by
7575
adding the following to your :file:`~/.bashrc` file:
7676

7777
.. code-block:: console
@@ -94,7 +94,7 @@ that you use. For example, you may be using the ``requests`` library in a lot
9494
of different projects.
9595

9696
It is surely unnecessary to re-download the same packages/libraries each time
97-
you start working on a new project (and in a new virtual environmen as a result).
97+
you start working on a new project (and in a new virtual environment as a result).
9898
Fortunately, you can configure pip in such a way that it tries to reuse already
9999
installed packages.
100100

docs/writing/documentation.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ comment block is a programmer's note. The docstring describes the
141141
"""Returns the square root of self times self."""
142142
...
143143
144-
.. seealso:: Further reading on docstrings: :pep:`257`
144+
.. see also:: Further reading on docstrings: :pep:`257`
145145
146146
147147
Other Tools

0 commit comments

Comments
 (0)