blob: 05c27b7fcdada3c45ce54f652b4bf5844aec2523 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
test :
python pep8.py --testsuite testsuite
selftest :
python pep8.py --repeat --statistics pep8.py
doctest :
python pep8.py --doctest
alltest : test selftest doctest
multitest :
python2.3 pep8.py --testsuite testsuite
python2.4 pep8.py --testsuite testsuite
python2.5 pep8.py --testsuite testsuite
python2.6 pep8.py --testsuite testsuite
python3.0 pep8.py --testsuite testsuite
python3.1 pep8.py --testsuite testsuite
python2.3 pep8.py --doctest
python2.4 pep8.py --doctest
python2.5 pep8.py --doctest
python2.6 pep8.py --doctest
python3.0 pep8.py --doctest
python3.1 pep8.py --doctest
python2.3 pep8.py --repeat --statistics pep8.py
python2.4 pep8.py --repeat --statistics pep8.py
python2.5 pep8.py --repeat --statistics pep8.py
python2.6 pep8.py --repeat --statistics pep8.py
python3.0 pep8.py --repeat --statistics pep8.py
python3.1 pep8.py --repeat --statistics pep8.py
|