Skip to content

Commit 25b1614

Browse files
committed
fix lines should be less than 80 chars
1 parent 9a221d0 commit 25b1614

File tree

1 file changed

+31
-14
lines changed

1 file changed

+31
-14
lines changed

docs/dev/env.rst

Lines changed: 31 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,10 @@ order to do this, add the following lines to your `vimrc`::
6363
TextMate
6464
--------
6565

66-
"`TextMate <http://macromates.com/>`_ brings Apple's approach to operating systems into the world of text editors. By bridging UNIX underpinnings and GUI, TextMate cherry-picks the best of both worlds to the benefit of expert scripters and novice users alike."
66+
"`TextMate <http://macromates.com/>`_ brings Apple's approach to operating
67+
systems into the world of text editors. By bridging UNIX underpinnings and GUI,
68+
TextMate cherry-picks the best of both worlds to the benefit of expert
69+
scripters and novice users alike."
6770

6871
Sublime Text
6972
------------
@@ -75,15 +78,18 @@ extraordinary features."
7578
Sublime Text has excellent support for editing Python code and uses Python for
7679
its plugin API.
7780

78-
`Sublime Text 2 <http://www.sublimetext.com/blog/articles/sublime-text-2-beta>`_ is currently in beta.
81+
`Sublime Text 2 <http://www.sublimetext.com/blog/articles/sublime-text-2-beta>`_
82+
is currently in beta.
7983

8084
IDEs
8185
::::
8286

8387
PyCharm / IntelliJ IDEA
8488
-----------------------
8589

86-
`PyCharm <http://www.jetbrains.com/pycharm/>`_ is developed by JetBrains, also known for IntelliJ IDEA. Both share the same code base and most of PyCharm's features can be brought to IntelliJ with the free `Python Plug-In <http://plugins.intellij.net/plugin/?id=631/>`_.
90+
`PyCharm <http://www.jetbrains.com/pycharm/>`_ is developed by JetBrains, also
91+
known for IntelliJ IDEA. Both share the same code base and most of PyCharm's
92+
features can be brought to IntelliJ with the free `Python Plug-In <http://plugins.intellij.net/plugin/?id=631/>`_.
8793

8894

8995
Eclipse
@@ -95,24 +101,28 @@ The most popular Eclipse plugin for Python development is Aptana's
95101

96102
Komodo IDE
97103
-----------
98-
`Komodo IDE <http://www.activestate.com/komodo-ide>`_ is developed by ActiveState and is a commercial IDE for Windows, Mac
104+
`Komodo IDE <http://www.activestate.com/komodo-ide>`_ is developed by
105+
ActiveState and is a commercial IDE for Windows, Mac
99106
and Linux.
100107

101108

102109
Spyder
103110
------
104111

105-
`Spyder <http://code.google.com/p/spyderlib/>`_ an IDE specifically geared toward working with scientific python libraries (namely `Scipy <http://www.scipy.org/>`_).
112+
`Spyder <http://code.google.com/p/spyderlib/>`_ an IDE specifically geared
113+
toward working with scientific python libraries (namely `Scipy <http://www.scipy.org/>`_).
106114
Includes integration with pyflakes_, `pylint <http://www.logilab.org/857>`_,
107115
and `rope <http://rope.sourceforge.net/>`_.
108116

109-
Spyder is open-source (free), offers code completion, syntax highlighting, class and function browser, and object inspection.
117+
Spyder is open-source (free), offers code completion, syntax highlighting,
118+
class and function browser, and object inspection.
110119

111120

112121
WingIDE
113122
-------
114123

115-
`WingIDE <http://wingware.com/>`_ a python specific IDE. Runs for Linux, Windows, and Mac (as an X11 application, which frustrates some Mac users).
124+
`WingIDE <http://wingware.com/>`_ a python specific IDE. Runs for Linux,
125+
Windows, and Mac (as an X11 application, which frustrates some Mac users).
116126

117127

118128
Interpreter Tools
@@ -122,8 +132,10 @@ Interpreter Tools
122132
virtualenv
123133
----------
124134

125-
Virtualenv is a tool to keep the dependencies required by different projects in separate places, by creating virtual Python environments for them.
126-
It solves the "Project X depends on version 1.x but, Project Y needs 4.x" dilemma and keeps your global site-packages directory clean and manageable.
135+
Virtualenv is a tool to keep the dependencies required by different projects
136+
in separate places, by creating virtual Python environments for them.
137+
It solves the "Project X depends on version 1.x but, Project Y needs 4.x"
138+
dilemma and keeps your global site-packages directory clean and manageable.
127139

128140
`virtualenv <http://www.virtualenv.org/en/latest/index.html>`_ creates
129141
a folder which contains all the necessary executables to contain the
@@ -195,7 +207,8 @@ control by adding it to the ignore list.
195207
virtualenvwrapper
196208
-----------------
197209

198-
`Virtualenvwrapper <http://pypi.python.org/pypi/virtualenvwrapper>`_ makes virtualenv a pleasure to use by wrapping the command line API with a nicer CLI.
210+
`Virtualenvwrapper <http://pypi.python.org/pypi/virtualenvwrapper>`_ makes
211+
virtualenv a pleasure to use by wrapping the command line API with a nicer CLI.
199212

200213
::
201214

@@ -208,7 +221,8 @@ Put this into your `~/.bash_profile` (Linux/Mac) file:
208221

209222
$ export VIRTUALENVWRAPPER_VIRTUALENV_ARGS='--no-site-packages'
210223

211-
This will prevent your virtualenvs from relying on your (global) site packages directory, so that they are completely separate..
224+
This will prevent your virtualenvs from relying on your (global) site packages
225+
directory, so that they are completely separate..
212226

213227
Other Tools
214228
:::::::::::
@@ -233,10 +247,12 @@ It provides following features:
233247
IPython
234248
-------
235249

236-
`IPython <http://ipython.org/>`_ provides a rich toolkit to help you make the most out of using Python interactively. Its main components are:
250+
`IPython <http://ipython.org/>`_ provides a rich toolkit to help you make the
251+
most out of using Python interactively. Its main components are:
237252

238253
* Powerful Python shells (terminal- and Qt-based).
239-
* A web-based notebook with the same core features but support for rich media, text, code, mathematical expressions and inline plots.
254+
* A web-based notebook with the same core features but support for rich media,
255+
text, code, mathematical expressions and inline plots.
240256
* Support for interactive data visualization and use of GUI toolkits.
241257
* Flexible, embeddable interpreters to load into your own projects.
242258
* Tools for high level and interactive parallel computing.
@@ -250,7 +266,8 @@ IPython
250266
BPython
251267
-------
252268

253-
`bpython <http://bpython-interpreter.org/>`_ is an alternative interface to the Python interpreter for Unix-like operating systems. It has the following features:
269+
`bpython <http://bpython-interpreter.org/>`_ is an alternative interface to the
270+
Python interpreter for Unix-like operating systems. It has the following features:
254271

255272
* In-line syntax highlighting.
256273
* Readline-like autocomplete with suggestions displayed as you type.

0 commit comments

Comments
 (0)