@@ -97,8 +97,8 @@ already an Emacs user is `Python Programming in Emacs`_ at EmacsWiki.
97
97
1. Emacs itself comes with a python mode.
98
98
2. Python ships with an alternate version:
99
99
`python-mode.el <https://launchpad.net/python-mode >`_
100
- 3. Fabián Ezequiel Gallina's provides nice functionality and
101
- behavior out of the box: ` python.el < https://github.com/fgallina/python.el >`_
100
+ 3. Fabián Ezequiel Gallina's ` python.el < https://github.com/fgallina/python.el >`_
101
+ provides nice functionality and behavior out of the box
102
102
103
103
.. _Python Programming in Emacs : http://emacswiki.org/emacs/PythonProgrammingInEmacs
104
104
@@ -141,16 +141,15 @@ The most popular Eclipse plugin for Python development is Aptana's
141
141
Komodo IDE
142
142
----------
143
143
`Komodo IDE <http://www.activestate.com/komodo-ide >`_ is developed by
144
- ActiveState and is a commercial IDE for Windows, Mac
145
- and Linux.
144
+ ActiveState and is a commercial IDE for Windows, Mac and Linux.
146
145
147
146
148
147
Spyder
149
148
------
150
149
151
- `Spyder <http://code.google.com/p/spyderlib/ >`_ an IDE specifically geared
150
+ `Spyder <http://code.google.com/p/spyderlib/ >`_ is an IDE specifically geared
152
151
toward working with scientific python libraries (namely `Scipy <http://www.scipy.org/ >`_).
153
- Includes integration with pyflakes _, `pylint <http://www.logilab.org/857 >`_,
152
+ It includes integration with pyflakes _, `pylint <http://www.logilab.org/857 >`_,
154
153
and `rope <http://rope.sourceforge.net/ >`_.
155
154
156
155
Spyder is open-source (free), offers code completion, syntax highlighting,
@@ -160,15 +159,15 @@ class and function browser, and object inspection.
160
159
WingIDE
161
160
-------
162
161
163
- `WingIDE <http://wingware.com/ >`_ a python specific IDE. Runs for Linux,
162
+ `WingIDE <http://wingware.com/ >`_ is a python specific IDE. It runs on Linux,
164
163
Windows, and Mac (as an X11 application, which frustrates some Mac users).
165
164
166
165
167
166
NINJA-IDE
168
167
---------
169
168
170
169
`NINJA-IDE <http://www.ninja-ide.org/ >`_ (from the recursive acronym: "Ninja-IDE
171
- Is Not Just Another IDE", is a cross-platform IDE, specially designed to build
170
+ Is Not Just Another IDE") is a cross-platform IDE, specially designed to build
172
171
Python applications, and runs on Linux/X11, Mac OS X and Windows desktop operating
173
172
systems. Installers for these platforms can be downloaded from the website.
174
173
@@ -207,7 +206,7 @@ library which you can use to install other packages. The name of the
207
206
virtual environment (in this case, it was ``venv ``) can be anything;
208
207
omitting the name will place the files in the current directory instead.
209
208
210
- In order the start using the virtual environment, run::
209
+ To start using the virtual environment, run::
211
210
212
211
$ source venv/bin/activate
213
212
@@ -284,12 +283,12 @@ IDLE
284
283
285
284
`IDLE <http://docs.python.org/library/idle.html >`_ is an integrated
286
285
development environment that is part of Python standard library. It is
287
- completely written in Python and uses Tkinter GUI toolkit. Though IDLE
288
- is not suited for full-blown development using Python , it is quite
286
+ completely written in Python and uses the Tkinter GUI toolkit. Though IDLE
287
+ is not suited for full-blown development using Python, it is quite
289
288
helpful to try out small Python snippets and experiment with different
290
289
features in Python.
291
290
292
- It provides following features:
291
+ It provides the following features:
293
292
294
293
* Python Shell Window (interpreter)
295
294
* Multi window text editor that colorizes Python code
0 commit comments