This file is indexed.

/usr/share/doc/phatch/html/_sources/pep8.txt is in phatch-doc 0.2.7.1-3.1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
Code Style: PEP8
****************

http://www.python.org/dev/peps/pep-0008/

Any code submitted to Phatch **must** follow the PEP8 code style, which is used in the standard library of the main Python distribution.

You can test if your code follows PEP8 by running the following script in the ``tests`` folder::

    python pep8_test.py

As you should have installed the bazaar precommit hook for Phatch, this test will also be enforced before you are able to commit to your branch.

.. warning::

    If you use Windows make sure that you save your code with ``\n`` line endings. Code with ``\r\n`` line endings will be refused.