Skip to content

Commit 7d6071a

Browse files
committed
Merge pull request realpython#332 from pengkui/master
Minor fixes.
2 parents fcf806d + 83a9946 commit 7d6071a

File tree

3 files changed

+8
-7
lines changed

3 files changed

+8
-7
lines changed

docs/starting/install/win.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
Installing Python on Windows
44
============================
55

6-
First, download the `latest version <http://python.org/ftp/python/2.7.4/python-2.7.4.msi>`_
6+
First, download the `latest version <http://python.org/ftp/python/2.7.6/python-2.7.6.msi>`_
77
of Python 2.7 from the official Website. If you want to be sure you are installing a fully
88
up-to-date version then use the "Windows Installer" link from the home page of the
99
`Python.org web site <http://python.org>`_ .
@@ -80,7 +80,7 @@ project. This is particularly important for Web development, where each
8080
framework and application will have many dependencies.
8181

8282

83-
To set up a new Python environment, change the working directory to where ever
83+
To set up a new Python environment, change the working directory to wherever
8484
you want to store the environment, and run the virtualenv utility in your
8585
project's directory
8686

docs/starting/which-python.rst

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -47,11 +47,11 @@ level of compatibility with Python packages and C extension modules.
4747

4848
If you are writing open-source Python code and want to reach the widest possible
4949
audience, targeting CPython is your best bet. If you need to use any packages
50-
that rely on C extensions for their functionality (e.g. numpy) then CPython
50+
that rely on C extensions for their functionality (e.g., numpy) then CPython
5151
is your only choice.
5252

5353
Being the reference implementation, all versions of the Python language are
54-
available as CPython. Python 3 is only available as a CPython implementation.
54+
available as CPython.
5555

5656
PyPy
5757
----
@@ -67,13 +67,14 @@ If you are looking to squeeze more performance out of your Python code, it's
6767
worth giving PyPy a try. On a suite of benchmarks, it's currently `over 5 times
6868
faster than CPython <http://speed.pypy.org/>`_.
6969

70-
Currently PyPy supports Python 2.7. [#pypy_ver]_
70+
Currently PyPy supports Python 2.7. PyPy3 which targets Python 3 was recently
71+
available as a beta release. [#pypy_ver]_
7172

7273
Jython
7374
------
7475

7576
`Jython <http://www.jython.org/>`_ is a Python implementation that compiles
76-
Python code to Java byte code that is then executed in a JVM. It has the additional
77+
Python code to Java bytecode that is then executed in a JVM. It has the additional
7778
advantage of being able to import and use any Java class like a Python
7879
module.
7980

docs/writing/structure.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ isolated? By answering questions like these you can begin to plan, in
1414
a broad sense, what your finished product will look like.
1515

1616
In this section we take a closer look at Python's module and import
17-
systems as they are the central element to enforcing structure in your
17+
systems as they are the central elements to enforcing structure in your
1818
project. We then discuss various perspectives on how to build code which
1919
can be extended and tested reliably.
2020

0 commit comments

Comments
 (0)