@@ -97,8 +97,8 @@ already an Emacs user is `Python Programming in Emacs`_ at EmacsWiki.
97971. Emacs itself comes with a python mode.
98982. Python ships with an alternate version:
9999 `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
102102
103103.. _Python Programming in Emacs : http://emacswiki.org/emacs/PythonProgrammingInEmacs
104104
@@ -141,16 +141,15 @@ The most popular Eclipse plugin for Python development is Aptana's
141141Komodo IDE
142142----------
143143`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.
146145
147146
148147Spyder
149148------
150149
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
152151toward 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 >`_,
154153and `rope <http://rope.sourceforge.net/ >`_.
155154
156155Spyder is open-source (free), offers code completion, syntax highlighting,
@@ -160,15 +159,15 @@ class and function browser, and object inspection.
160159WingIDE
161160-------
162161
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,
164163Windows, and Mac (as an X11 application, which frustrates some Mac users).
165164
166165
167166NINJA-IDE
168167---------
169168
170169`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
172171Python applications, and runs on Linux/X11, Mac OS X and Windows desktop operating
173172systems. Installers for these platforms can be downloaded from the website.
174173
@@ -207,7 +206,7 @@ library which you can use to install other packages. The name of the
207206virtual environment (in this case, it was ``venv ``) can be anything;
208207omitting the name will place the files in the current directory instead.
209208
210- In order the start using the virtual environment, run::
209+ To start using the virtual environment, run::
211210
212211 $ source venv/bin/activate
213212
@@ -284,12 +283,12 @@ IDLE
284283
285284`IDLE <http://docs.python.org/library/idle.html >`_ is an integrated
286285development 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
289288helpful to try out small Python snippets and experiment with different
290289features in Python.
291290
292- It provides following features:
291+ It provides the following features:
293292
294293* Python Shell Window (interpreter)
295294* Multi window text editor that colorizes Python code
0 commit comments