Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/dev/env.rst
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ the syntax file included in VIM 6.1.
These plugins supply you with a basic environment for developing in Python.
To get the most out of Vim, you should continually check your code for syntax
errors and PEP8 compliance. Luckily PEP8_ and Pyflakes_ will do this for you.
If your VIM is compiled with `+python` you can also utilize some very handy
If your VIM is compiled with :option:`+python` you can also utilize some very handy
plugins to do these checks from within the editor.

For PEP8 checking, install the vim-pep8_ plugin, and for pyflakes you can
Expand Down Expand Up @@ -241,7 +241,7 @@ case, it would be ``rm -rf venv``.)
Other Notes
^^^^^^^^^^^

Running ``virtualenv`` with the option ``--no-site-packages`` will not
Running ``virtualenv`` with the option :option:`--no-site-packages` will not
include the packages that are installed globally. This can be useful
for keeping the package list clean in case it needs to be accessed later.
[This is the default behavior for ``virtualenv`` 1.7 and later.]
Expand Down
2 changes: 1 addition & 1 deletion docs/shipping/freezing.rst
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ cx_Freeze yes yes yes yes PSF no yes yes
.. note::
All solutions need MS Visual C++ dll to be installed on target machine.
Only Pyinstaller makes self-executable exe that bundles the dll when
passing ``--onefile`` to :file:`Configure.py`.
passing :option:`--onefile` to :file:`Configure.py`.

Windows
-------
Expand Down
2 changes: 1 addition & 1 deletion docs/shipping/packaging.rst
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ pypiserver

`Pypiserver <https://pypi.python.org/pypi/pypiserver>`_ is a minimal PyPI compatible server.
It can be used to serve a set of packages to easy_install or pip. It includes helpful
features like an administrative command (``-U``) which will update all its packages to their
features like an administrative command (:option:`-U`) which will update all its packages to their
latest versions found on PyPI.


Expand Down