summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFlorent Xicluna <florent.xicluna@gmail.com>2012-12-22 17:01:17 +0100
committerFlorent Xicluna <florent.xicluna@gmail.com>2012-12-22 17:01:17 +0100
commitedeba8622d2e924302ce7378af975b66f1cf141d (patch)
treedaf3dde3d20fd51ca98ff34f1cb34255dff6277f
parent53ac41fcf43500fdc1c51f671f5ca4c4c28dd201 (diff)
downloadpep8-edeba8622d2e924302ce7378af975b66f1cf141d.tar.gz
Doc: now tested with Python 3.3 too
-rw-r--r--docs/advanced.rst2
-rw-r--r--docs/developer.rst20
2 files changed, 14 insertions, 8 deletions
diff --git a/docs/advanced.rst b/docs/advanced.rst
index 5b32a22..2bce2e0 100644
--- a/docs/advanced.rst
+++ b/docs/advanced.rst
@@ -70,7 +70,7 @@ through a custom wrapper for the PEP 8 library::
raise SystemExit(1)
This module declares a lines' window which skips 14 lines at the beginning
-and 20 lines at the end. If there's no lines to skip at the end, it could be
+and 20 lines at the end. If there's no line to skip at the end, it could be
changed with ``LINES_SLICE = slice(14, None)`` for example.
You can save it in a file and use it with the same options as the
diff --git a/docs/developer.rst b/docs/developer.rst
index 84f721a..5f7ad73 100644
--- a/docs/developer.rst
+++ b/docs/developer.rst
@@ -10,6 +10,18 @@ Source code
The source code is currently `available on GitHub`_. Fork away!
+* `Source code <https://github.com/jcrocholl/pep8>`_ and
+ `issue tracker <https://github.com/jcrocholl/pep8/issues>`_ on GitHub.
+* `Continuous tests <http://travis-ci.org/jcrocholl/pep8>`_ against Python
+ 2.5 through 3.3 and PyPy, on `Travis-CI platform
+ <http://about.travis-ci.org/>`_.
+
+.. _available on GitHub: https://github.com/jcrocholl/pep8
+
+
+Contribute
+~~~~~~~~~~
+
You can add checks to this program by writing plugins. Each plugin is
a simple function that is called for each line of source code, either
physical or logical.
@@ -66,14 +78,8 @@ Then be sure to pass the tests::
$ python pep8.py --doctest
$ python pep8.py --verbose pep8.py
-* `Source code <https://github.com/jcrocholl/pep8>`_ and
- `issue tracker <https://github.com/jcrocholl/pep8/issues>`_ on GitHub.
-* `Continuous tests <http://travis-ci.org/jcrocholl/pep8>`_ against Python
- 2.5 through 3.2 and PyPy, on `Travis-CI platform
- <http://about.travis-ci.org/>`_.
-
.. _PEP 8: http://www.python.org/dev/peps/pep-0008/
-.. _available on GitHub: https://github.com/jcrocholl/pep8
+
Changes
~~~~~~~