File tree Expand file tree Collapse file tree 2 files changed +20
-1
lines changed Expand file tree Collapse file tree 2 files changed +20
-1
lines changed Original file line number Diff line number Diff line change 22
22
--swallow-optional-blank-lines
23
23
-T PyCFunction
24
24
-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 @@ -5,6 +5,7 @@ LCOV_REPORT_OPTIONS=--show-details -no-branch-coverage \
5
5
--title "python-ldap LCOV report"
6
6
SCAN_REPORT =build/scan_report
7
7
PYTHON_SUPP =/usr/share/doc/python3-devel/valgrind-python.supp
8
+ AUTOPEP8_OPTS =--aggressive
8
9
9
10
.NOTPARALLEL :
10
11
13
14
14
15
.PHONY : clean
15
16
clean :
16
- rm -rf build dist * .egg-info $( VENV ) .tox MANIFEST
17
+ rm -rf build dist * .egg-info .tox MANIFEST
17
18
rm -f .coverage .coverage.*
18
19
find . \( -name ' *.py[co]' -or -name ' *.so*' -or -name ' *.dylib' \) \
19
20
-delete
@@ -77,3 +78,14 @@ valgrind: build $(PYTHON_SUPP)
77
78
echo "Found definitive leak, see build/valgrind.log"; \
78
79
exit 1; \
79
80
fi
81
+
82
+ # Code autoformatter
83
+ .PHONY : indent
84
+ indent :
85
+ indent Modules/* .c Modules/* .h
86
+ rm -f Modules/* .c~ Modules/* .h~
87
+
88
+ .PHONY : autopep8
89
+ autopep8 :
90
+ $(PYTHON ) -m autopep8 -r -i -j0 $(AUTOPEP8_OPTS ) \
91
+ Demo Lib Tests setup.py
You can’t perform that action at this time.
0 commit comments