File tree Expand file tree Collapse file tree 2 files changed +21
-1
lines changed
Expand file tree Collapse file tree 2 files changed +21
-1
lines changed Original file line number Diff line number Diff line change 2222--swallow-optional-blank-lines
2323-T PyCFunction
2424-T PyObject
25+ -T PyMethodDef
26+ -T LDAP
27+ -T LDAPMod
28+ -T LDAPMessage
29+ -T LDAPControl
30+ -T LDAPObject
31+ -T sasl_interact_t
Original file line number Diff line number Diff line change @@ -2,6 +2,8 @@ LCOV_INFO=build/lcov.info
22LCOV_REPORT =build/lcov_report
33LCOV_REPORT_OPTIONS =--show-details -no-branch-coverage \
44 --title "python-ldap LCOV report"
5+ PYTHON =python3
6+ AUTOPEP8_OPTS =--aggressive
57
68.NOTPARALLEL :
79
1012
1113.PHONY : clean
1214clean :
13- rm -rf build dist * .egg-info $( VENV ) .tox MANIFEST
15+ rm -rf build dist * .egg-info .tox MANIFEST
1416 rm -f .coverage .coverage.*
1517 find . -name ' *.py[co]' -or -name ' *.so*' -or -name ' *.dylib' -delete
1618 find . -depth -name __pycache__ -exec rm -rf {} \;
1719
20+
1821# LCOV report (measuring test coverage for C code)
1922.PHONY : lcov-clean lcov-coverage lcov-report lcov-open lcov
2023lcov-clean :
@@ -39,3 +42,13 @@ lcov-open: $(LCOV_REPORT)
3942lcov : lcov-clean
4043 $(MAKE ) lcov-coverage
4144 $(MAKE ) lcov-report
45+
46+ .PHONY : indent
47+ indent :
48+ indent Modules/* .c Modules/* .h
49+ rm -f Modules/* .c~ Modules/* .h~
50+
51+ .PHONY : autopep8
52+ autopep8 :
53+ $(PYTHON ) -m autopep8 -r -i -j0 $(AUTOPEP8_OPTS ) \
54+ Demo Lib Tests setup.py
You can’t perform that action at this time.
0 commit comments