mirror of
https://github.com/varun-r-mallya/Python-BPF.git
synced 2026-03-25 22:51:28 +00:00
7 lines
215 B
Python
7 lines
215 B
Python
"""Expression evaluation and processing for BPF programs."""
|
|
|
|
from .expr_pass import eval_expr, handle_expr
|
|
from .type_normalization import convert_to_bool
|
|
|
|
__all__ = ["eval_expr", "handle_expr", "convert_to_bool"]
|