| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -23,7 +23,7 @@ both popular and exotic. | |||
| 23 | 23 | pydoc | |
| 24 | 24 | ----- | |
| 25 | 25 | ||
| 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. | ||
| 27 | 27 | It allows you to quickly retrieve and search for documentation from your | |
| 28 | 28 | shell. For example, if you needed a quick refresher on the | |
| 29 | 29 | :mod:`time` module, pulling up documentation would be as simple as | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -255,8 +255,8 @@ system. `Puppet Forge <https://forge.puppetlabs.com/>`_ is a repository for | |||
| 255 | 255 | modules written by the community for Open Source and Enterprise Puppet. | |
| 256 | 256 | ||
| 257 | 257 | 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. | ||
| 260 | 260 | ||
| 261 | 261 | Agent nodes send basic facts about the system such as to the operating system, | |
| 262 | 262 | kernel, architecture, ip address, hostname etc. to the Puppet Master. | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -15,7 +15,7 @@ and the mailing list https://groups.google.com/forum/#!forum/project-camelot | |||
| 15 | 15 | ||
| 16 | 16 | Cocoa | |
| 17 | 17 | ----- | |
| 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! | ||
| 19 | 19 | ||
| 20 | 20 | GTk | |
| 21 | 21 | --- | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -107,7 +107,7 @@ Prerequisite is to have installed :ref:`Python, Setuptools and pywin32 dependenc | |||
| 107 | 107 | - `Manual <http://www.pyinstaller.org/export/d3398dd79b68901ae1edd761f3fe0f4ff19cfb1a/project/doc/Manual.html?format=raw>`_ | |
| 108 | 108 | ||
| 109 | 109 | ||
| 110 | - OS X | ||
| 110 | + OS X | ||
| 111 | 111 | ---- | |
| 112 | 112 | ||
| 113 | 113 | ||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -23,7 +23,7 @@ The downside of distributing code like this is that it relies on the | |||
| 23 | 23 | recipient understanding how to install the required version of Python, | |
| 24 | 24 | and being able and willing to use tools such as pip to install your code's | |
| 25 | 25 | 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. | ||
| 27 | 27 | ||
| 28 | 28 | The `Python Packaging Guide <https://python-packaging-user-guide.readthedocs.org/en/latest/>`_ | |
| 29 | 29 | provides an extensive guide on creating and maintaining Python packages. | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -6,7 +6,7 @@ Further Configuration of Pip and Virtualenv | |||
| 6 | 6 | Requiring an active virtual environment for ``pip`` | |
| 7 | 7 | --------------------------------------------------- | |
| 8 | 8 | ||
| 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 | ||
| 10 | 10 | keep your development environment clean and keeping different projects' | |
| 11 | 11 | requirements separate. | |
| 12 | 12 | ||
@@ -71,7 +71,7 @@ add the following lines to this new file: | |||
| 71 | 71 | ||
| 72 | 72 | ||
| 73 | 73 | 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 | ||
| 75 | 75 | adding the following to your :file:`~/.bashrc` file: | |
| 76 | 76 | ||
| 77 | 77 | .. code-block:: console | |
@@ -94,7 +94,7 @@ that you use. For example, you may be using the ``requests`` library in a lot | |||
| 94 | 94 | of different projects. | |
| 95 | 95 | ||
| 96 | 96 | 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). | ||
| 98 | 98 | Fortunately, you can configure pip in such a way that it tries to reuse already | |
| 99 | 99 | installed packages. | |
| 100 | 100 | ||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -141,7 +141,7 @@ comment block is a programmer's note. The docstring describes the | |||
| 141 | 141 | """Returns the square root of self times self.""" | |
| 142 | 142 | ... | |
| 143 | 143 | ||
| 144 | - .. seealso:: Further reading on docstrings: :pep:`257` | ||
| 144 | + .. see also:: Further reading on docstrings: :pep:`257` | ||
| 145 | 145 | ||
| 146 | 146 | ||
| 147 | 147 | Other Tools | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -6,7 +6,7 @@ Code Style | |||
| 6 | 6 | If you ask Python programmers what they like most in Python, they will | |
| 7 | 7 | often say its high readability. Indeed, a high level of readability | |
| 8 | 8 | is at the heart of the design of the Python language, following the | |
| 9 | - recognised fact that code is read much more often than it is written. | ||
| 9 | + recognized fact that code is read much more often than it is written. | ||
| 10 | 10 | ||
| 11 | 11 | One reason for Python code to be easily read and understood is its relatively | |
| 12 | 12 | complete set of Code Style guidelines and "Pythonic" idioms. | |
| Back | FazBrowse Home | New Git URL |
0 commit comments