Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
P
pymilter
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Container registry
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
misc
pymilter
Commits
53613156
Commit
53613156
authored
8 years ago
by
Stuart D. Gathman
Browse files
Options
Downloads
Patches
Plain Diff
Minor fixes to make test suite pass for python2 after binary/text file changes.
parent
755f3edb
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
pep8.dat
+6
-0
6 additions, 0 deletions
pep8.dat
pep8.sh
+5
-0
5 additions, 0 deletions
pep8.sh
with
11 additions
and
0 deletions
pep8.dat
0 → 100644
+
6
−
0
View file @
53613156
Check Description Justification
E111 req indent 4 Creates more continuation lines
E114 req indent 4 cmnt Same
E231 req space after , makes calls like print() harder to read
E266 no ## Required by Doxygen
W291 trailing spaces in cmnt Needed for space preserving para reformat
This diff is collapsed.
Click to expand it.
pep8.sh
0 → 100755
+
5
−
0
View file @
53613156
#!/bin/sh
ignore
=
`
awk
-F
\\\\
t
'{ print $1 }'
pep8.dat |
tail
-n
+2
`
a
=(
${
ignore
}
)
list
=
$(
echo
"
${
a
[@]
}
"
|tr
'[ ]'
'[,]'
)
echo
python3
-m
pep8
--ignore
=
"
$list
"
$@
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment