mirror of
https://github.com/zeek/zeek.git
synced 2025-10-10 18:48:20 +00:00
Remove an old, unused diff canonifier.
This commit is contained in:
parent
22fb039e83
commit
350c93c136
1 changed files with 0 additions and 15 deletions
|
@ -1,15 +0,0 @@
|
||||||
#!/usr/bin/python
|
|
||||||
|
|
||||||
import sys
|
|
||||||
import re
|
|
||||||
|
|
||||||
# MutableVal derivatives (e.g. sets/tables) don't always generate the same
|
|
||||||
# ordering in the reST documentation, so just don't bother diffing
|
|
||||||
# the places where example.bro uses them.
|
|
||||||
|
|
||||||
RE1 = "\d*/tcp"
|
|
||||||
RE2 = "tcp port \d*"
|
|
||||||
|
|
||||||
for line in sys.stdin.readlines():
|
|
||||||
if re.search(RE1, line) is None and re.search(RE2, line) is None:
|
|
||||||
print line
|
|
Loading…
Add table
Add a link
Reference in a new issue