Skip to content

Commit 574ab18

Browse files
author
Kenneth Reitz
committed
Merge pull request realpython#100 from imbilltucker/master
fix typo, add Python Koans, WingIDE
2 parents b2d27e9 + 06aefdb commit 574ab18

File tree

3 files changed

+27
-2
lines changed

3 files changed

+27
-2
lines changed

docs/dev/env.rst

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -82,6 +82,7 @@ PyCharm / IntelliJ IDEA
8282

8383
`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/>`_.
8484

85+
8586
Eclipse
8687
-------
8788

@@ -94,6 +95,7 @@ Komodo IDE
9495
`Komodo IDE <http://www.activestate.com/komodo-ide>`_ is developed by ActiveState and is a commerical IDE for Windows, Mac
9596
and Linux.
9697

98+
9799
Spyder
98100
------
99101

@@ -104,6 +106,11 @@ and `rope <http://rope.sourceforge.net/>`_.
104106
Spyder is open-source (free), offers code completion, syntax highlighting, class and function browser, and object inspection.
105107

106108

109+
WingIDE
110+
-------
111+
112+
`WingIDE <http://wingware.com/>`_ a python specific IDE. Runs for Linux, Windows, and Mac (as on X11 application, which frustrates some Mac users).
113+
107114

108115
Interpreter Tools
109116
:::::::::::::::::

docs/intro/learning.rst

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,24 @@ and Markov Analysis.
5353
`Think Python <http://greenteapress.com/thinkpython/html/index.html>`_
5454

5555

56+
Python Koans
57+
~~~~~~~~~~~~
58+
59+
Python Koans is a port of Edgecase's Ruby Koans. It uses a test-driven approach, q.v. TEST DRIVEN DESIGN SECTION
60+
to provide an interactive
61+
tutorial teaching basic python concepts. By fixing assertion statements that fail in a test script, this
62+
provides sequential steps to learning python.
63+
64+
For those used to languages and figuring out puzzles on their own, this can be a fun, attractive option.
65+
For those new to python and programming, having an additional resource or reference will be helpful.
66+
67+
`Python Koans <http://bitbucket.org/mcrute/python_koans>`_
68+
69+
More information about test driven development can be found at these resources:
70+
71+
`Test Driven Development <http://en.wikipedia.org/wiki/Test-driven_development>`
72+
73+
5674
Advanced
5775
--------
5876

docs/notes/styleguide.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,15 +12,15 @@ approriate.
1212
The Guide is written as :ref:`restructuredtext-ref`.
1313

1414
.. note:: Parts of The Guide may not yet match this style guide. Feel free
15-
to update those parts to by in sync with The Guide Style Guide
15+
to update those parts to be in sync with The Guide Style Guide
1616

1717
.. note:: On any page of the rendered HTML you can click "Show Source" to
1818
see how authors have styled the page.
1919

2020
Relevancy
2121
---------
2222

23-
Stride to keep any contributions relevant to the :ref:`purpose of The Guide
23+
Strive to keep any contributions relevant to the :ref:`purpose of The Guide
2424
<about-ref>`.
2525

2626
* Avoid including too much information on subjects that don't directly

0 commit comments

Comments
 (0)