File tree Expand file tree Collapse file tree 8 files changed +19
-19
lines changed
Filter options
Expand file tree Collapse file tree 8 files changed +19
-19
lines changed
Original file line number Diff line number Diff line change @@ -233,7 +233,7 @@ The name of the current virtual environment will now appear on the left
233
233
of the prompt (e.g. ``(venv)Your-Computer:your_project UserName$ ``) to
234
234
let you know that it's active. From now on, any package that you install
235
235
using ``pip `` will be placed in the ``venv `` folder, isolated from the global
236
- Python installation.
236
+ Python installation.
237
237
238
238
Install packages as usual:
239
239
Original file line number Diff line number Diff line change @@ -77,11 +77,11 @@ For the Community
77
77
78
78
All contributions to the Guide are welcome, from Pythonistas of all levels.
79
79
If you think there's a gap in what the Guide covers, fork the Guide on
80
- GitHub and submit a pull request.
80
+ GitHub and submit a pull request.
81
81
82
- Contributions are welcome from everyone, whether they're an old hand or a
83
- first-time Pythonista, and the authors to the Guide will gladly help if you
84
- have any questions about the appropriateness, completeness, or accuracy of
82
+ Contributions are welcome from everyone, whether they're an old hand or a
83
+ first-time Pythonista, and the authors to the Guide will gladly help if you
84
+ have any questions about the appropriateness, completeness, or accuracy of
85
85
a contribution.
86
86
87
87
To get started working on The Hitchhiker's Guide, see the :doc: `/notes/contribute ` page.
Original file line number Diff line number Diff line change @@ -201,7 +201,7 @@ Programming Collective Intelligence
201
201
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
202
202
203
203
Programming Collective Intelligence introduces a wide array of basic machine learning and
204
- data mining methods. The exposition is not very mathematically formal, but rather focuses
204
+ data mining methods. The exposition is not very mathematically formal, but rather focuses
205
205
on explaining the underlying intuition and shows how to implement the algorithms in Python.
206
206
207
207
`Programming Collective Intelligence <http://shop.oreilly.com/product/9780596529321.do >`_
@@ -225,7 +225,7 @@ This is Python's reference manual, it covers the syntax and the core semantics o
225
225
language.
226
226
227
227
`The Python Language Reference <http://docs.python.org/reference/index.html >`_
228
-
228
+
229
229
Python Pocket Reference
230
230
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
231
231
@@ -239,7 +239,7 @@ Writing Idiomatic Python
239
239
~~~~~~~~~~~~~~~~~~~~~~~~
240
240
241
241
"Writing Idiomatic Python", written by Jeff Knupp, contains the most common and
242
- important Python idioms in a format that maximizes identification and understanding.
242
+ important Python idioms in a format that maximizes identification and understanding.
243
243
Each idiom is presented as a recommendation of a way to write some commonly
244
244
used piece of code, followed by an explanation of why the idiom is important.
245
245
It also contains two code samples for each idiom: the "Harmful" way to write it
Original file line number Diff line number Diff line change @@ -40,7 +40,7 @@ anywhere. You can use Mule to intelligently manage message routing, data
40
40
mapping, orchestration, reliability, security and scalability between nodes.
41
41
Plug other systems and applications into Mule and let it handle all the
42
42
communication between systems, enabling you to track and monitor everything
43
- that happens.
43
+ that happens.
44
44
45
45
46
46
Tox
Original file line number Diff line number Diff line change @@ -45,10 +45,10 @@ library is designed to have a familiar socket-style API.
45
45
RabbitMQ
46
46
--------
47
47
48
- RabbitMQ is an open source message broker software that implements the Advanced Message Queuing Protocol (AMQP).
49
- The RabbitMQ server is written in the Erlang programming language and is built on the Open Telecom Platform
50
- framework for clustering and failover. Client libraries to interface with the broker are available
48
+ RabbitMQ is an open source message broker software that implements the Advanced Message Queuing Protocol (AMQP).
49
+ The RabbitMQ server is written in the Erlang programming language and is built on the Open Telecom Platform
50
+ framework for clustering and failover. Client libraries to interface with the broker are available
51
51
for all major programming languages.
52
52
53
- - `Homepage <http://www.rabbitmq.com/ >`_
53
+ - `Homepage <http://www.rabbitmq.com/ >`_
54
54
- `GitHub Organization <https://github.com/rabbitmq?page=1 >`_
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ applications on top of Python, SQLAlchemy and Qt. It is inspired by
10
10
the Django admin interface.
11
11
12
12
The main resource for information is the website:
13
- http://www.python-camelot.com
13
+ http://www.python-camelot.com
14
14
and the mailing list https://groups.google.com/forum/#!forum/project-camelot
15
15
16
16
Cocoa
Original file line number Diff line number Diff line change @@ -93,13 +93,13 @@ Reference`_ should help you familiarize yourself with its syntax.
93
93
Code Documentation Advice
94
94
-------------------------
95
95
96
- Comments clarify the code and they are added with purpose of making the
97
- code easier to understand. In Python, comments begin with a hash
96
+ Comments clarify the code and they are added with purpose of making the
97
+ code easier to understand. In Python, comments begin with a hash
98
98
(number sign) (``# ``).
99
99
100
100
.. _docstring-ref :
101
101
102
- In Python, *docstrings * describe modules, classes, and functions:
102
+ In Python, *docstrings * describe modules, classes, and functions:
103
103
104
104
.. code-block :: python
105
105
@@ -168,7 +168,7 @@ Epydoc_
168
168
.. _Epydoc : http://epydoc.sourceforge.net
169
169
170
170
MkDocs _
171
- MkDocs is a fast and simple static site generator that's geared towards
171
+ MkDocs is a fast and simple static site generator that's geared towards
172
172
building project documentation with Markdown.
173
173
174
174
.. _MkDocs : http://www.mkdocs.org/
Original file line number Diff line number Diff line change @@ -172,7 +172,7 @@ Alternatively, you can use the functools.partial function:
172
172
173
173
from functools import partial
174
174
from operator import mul
175
-
175
+
176
176
def create_multipliers ():
177
177
return [partial(mul, i) for i in range (5 )]
178
178
You can’t perform that action at this time.
0 commit comments