Skip to content

Commit 6881d2e

Browse files
Complete documentation coverage: add final module docstrings
Co-authored-by: varun-r-mallya <[email protected]>
1 parent d9dfb61 commit 6881d2e

File tree

2 files changed

+13
-0
lines changed

2 files changed

+13
-0
lines changed

pythonbpf/debuginfo/dwarf_constants.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
"""
2+
DWARF debugging format constants.
3+
4+
Generated constants from dwarf.h for use in debug information generation.
5+
"""
6+
17
# generated constants from dwarf.h
28

39
DW_UT_compile = 0x01

pythonbpf/functions/return_utils.py

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
"""
2+
Utility functions for handling return statements in BPF functions.
3+
4+
Provides handlers for different types of returns including XDP actions,
5+
None returns, and standard returns.
6+
"""
7+
18
import logging
29
import ast
310

0 commit comments

Comments
 (0)