Rename parser -> Parser and formats -> FORMATS in apachelog.parser.
authorW. Trevor King <wking@drexel.edu>
Sat, 18 Feb 2012 18:02:10 +0000 (13:02 -0500)
committerW. Trevor King <wking@drexel.edu>
Sat, 18 Feb 2012 18:02:10 +0000 (13:02 -0500)
commit535e4a372355c66c70b707794dbd15aa0c846488
tree21859c26831448b1bb3902bc91f4a8ba9f540e00
parentad60a7dfc25ea519a36ebf2fd8fb70288fd4361a
Rename parser -> Parser and formats -> FORMATS in apachelog.parser.

This brings us closer to PEP8_ compliance (CapWords class names).
Global constants are not given an explict case convention in PEP8, but
UPPERCASE seems conventional (for example, see the `os` module).

I also moved the main docstring and metadata from
`apachelog.parser.__doc__` to `apachelog.__doc__`, so it will be
easier to find.  I updated that docstring to use reStructuredText, and
converted the examples to doctests.

.. _PEP8: http://www.python.org/dev/peps/pep-0008/
apachelog/__init__.py
apachelog/parser.py
apachelog/test/test_parser.py