mirror of
https://github.com/varun-r-mallya/Python-BPF.git
synced 2026-03-24 22:21:29 +00:00
Complete documentation coverage: add final module docstrings
Co-authored-by: varun-r-mallya <100590632+varun-r-mallya@users.noreply.github.com>
This commit is contained in:
@ -1,3 +1,9 @@
|
||||
"""
|
||||
DWARF debugging format constants.
|
||||
|
||||
Generated constants from dwarf.h for use in debug information generation.
|
||||
"""
|
||||
|
||||
# generated constants from dwarf.h
|
||||
|
||||
DW_UT_compile = 0x01
|
||||
|
||||
@ -1,3 +1,10 @@
|
||||
"""
|
||||
Utility functions for handling return statements in BPF functions.
|
||||
|
||||
Provides handlers for different types of returns including XDP actions,
|
||||
None returns, and standard returns.
|
||||
"""
|
||||
|
||||
import logging
|
||||
import ast
|
||||
|
||||
|
||||
Reference in New Issue
Block a user