-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use Python package for tree-sitter-zeek
tree-sitter-zeek now provides a Python package we can directly depend on. With this we can avoid building and shipping the generated tree-sitter bindings. By using the "official upstream API" we can also simplify the way we parse input.
- Loading branch information
Showing
8 changed files
with
11 additions
and
69 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,5 @@ | ||
build | ||
dist | ||
*.egg-info | ||
zeekscript/zeek-language.so | ||
zeekscript/zeek-language.exp | ||
zeekscript/zeek-language.lib | ||
__pycache__ | ||
.idea/ |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Submodule tree-sitter-zeek
deleted from
b1fdab
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,10 @@ | ||
"""Wrapper around more low-level tests.""" | ||
__version__ = "1.2.9" | ||
__all__ = ["cli", "error", "formatter", "node", "output", "parser", "script"] | ||
__all__ = ["cli", "error", "formatter", "node", "output", "script"] | ||
|
||
from .cli import * | ||
from .error import * | ||
from .formatter import * | ||
from .node import * | ||
from .output import * | ||
from .parser import * | ||
from .script import * |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters