Skip to content

Commit 09de7cb

Browse files
committed
Merge pull request realpython#367 from cli248/update
Several modifications
2 parents eb2b08a + 78f2b9e commit 09de7cb

File tree

6 files changed

+14
-12
lines changed

6 files changed

+14
-12
lines changed

docs/intro/community.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ The major events for the Python community are developer conferences. The two
7575
most notable conferences are PyCon, which is held in the US, and its European
7676
sibling, EuroPython.
7777

78-
A comprehensive list of conferences is maintained `at pycon.org <http://www.pycon.org/>`_.
78+
A comprehensive list of conferences is maintained at `pycon.org <http://www.pycon.org/>`_.
7979

8080

8181
Python User Groups

docs/intro/learning.rst

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,6 +104,8 @@ Pro Python
104104
This book is for intermediate to advanced Python programmers who are looking to understand how
105105
and why Python works the way it does and how they can take their code to the next level.
106106

107+
`Pro Python <http://propython.com>`_
108+
107109

108110
Expert Python Programming
109111
~~~~~~~~~~~~~~~~~~~~~~~~~
@@ -145,7 +147,7 @@ chosen from mathematics and the natural sciences.
145147
Numerical Methods in Engineering with Python
146148
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
147149

148-
Numerical Methods in Engineering with Python,written by Jaan Kiusalaas, attempts to
150+
Numerical Methods in Engineering with Python, written by Jaan Kiusalaas, attempts to
149151
emphasis on numerical methods and how to implement them in Python.
150152

151153
`Numerical Methods in Engineering with Python <http://www.cambridge.org/us/academic/subjects/engineering/engineering-mathematics-and-programming/numerical-methods-engineering-python-2nd-edition>`_

docs/scenarios/admin.rst

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -177,8 +177,7 @@ A full terminal application like a widely extended top which is based on psutil
177177
monitoring is `glance <https://github.com/nicolargo/glances/>`_.
178178

179179
Ansible
180-
Chef
181-
----
180+
-------
182181

183182
.. todo:: Write about Ansible
184183

docs/scenarios/scientific.rst

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -53,10 +53,11 @@ NumPy is compatible with Python versions 2.4 through to 2.7.2 and 3.1+.
5353

5454
Numba
5555
-----
56-
Numba is an Numpy aware Python compiler (just-in-time (JIT) specializing
57-
compiler) which compiles annotated Python (and Numpy) code to LLVM (Low Level
58-
Virtual Machine) (through special decorators).
59-
Briefly, Numba using system that compiles Python code with LLVM to code which
56+
57+
`Numba <http://numba.pydata.org>`_ is an Numpy aware Python compiler
58+
(just-in-time (JIT) specializing compiler) which compiles annotated Python (and
59+
Numpy) code to LLVM (Low Level Virtual Machine) (through special decorators).
60+
Briefly, Numba using system that compiles Python code with LLVM to code which
6061
can be natively executed at runtime.
6162

6263
SciPy

docs/scenarios/xml.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ XML parsing
44
untangle
55
--------
66

7-
`untangle <http://0chris.com/untangle>`_ is a simple library which takes
8-
an XML document and returns a Python object which mirrors the nodes and
7+
`untangle <https://github.com/stchris/untangle>`_ is a simple library which
8+
takes an XML document and returns a Python object which mirrors the nodes and
99
attributes in its structure.
1010

1111
For example, an XML file like this:

docs/shipping/packaging.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -99,12 +99,12 @@ One simple option for a personal PyPi server is to use Amazon S3. A prerequisite
9999

100100
6. **All done**
101101

102-
* You can now your package with :code:`pip install --index-url=http://your-s3-bucket/packages/simple/ YourPackage`
102+
* You can now install your package with :code:`pip install --index-url=http://your-s3-bucket/packages/simple/ YourPackage`
103103

104104
For Linux Distributions
105105
::::::::::::::::::::::::
106106

107-
* `Ubuntu <https://wiki.ubuntu.com/PackagingGuide/Python>`_
107+
* `Ubuntu <http://packaging.ubuntu.com/html/python-packaging.html>`_
108108
* `Fedora <https://fedoraproject.org/wiki/Packaging:Python>`_
109109
* `Debian <http://www.debian.org/doc/packaging-manuals/python-policy/>`_
110110
* `Arch <https://wiki.archlinux.org/index.php/Python_Package_Guidelines>`_

0 commit comments

Comments
 (0)