Skip to content

Commit d6f110d

Browse files
committed
Add top-level docstrings to modules that don't have one yet
Change-Id: I0f3c1a4f852d9e1bcb8c653b63ecd770ff602324 no-tn-check
1 parent 8242690 commit d6f110d

File tree

9 files changed

+36
-0
lines changed

9 files changed

+36
-0
lines changed

gnatdbg/debug.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
"""
2+
Helpers to ease the discovery/debugging of GDB's Python API.
3+
"""
4+
15
import itertools
26

37
import gdb

gnatdbg/generics.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
"""
2+
Helpers to match type patterns in debugged programs.
3+
"""
4+
15
from contextlib import contextmanager
26
import re
37

gnatdbg/lists.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
"""
2+
Pretty-printers for doubly-linked lists in Ada.Containers.Doubly_Linked_Lists.
3+
"""
4+
15
import itertools
26

37
import gdb

gnatdbg/maps.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
"""
2+
Pretty-printers for hashed and ordered maps in Ada.Containers.
3+
"""
4+
15
from itertools import count
26

37
from gnatdbg.generics import Match

gnatdbg/printers.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
"""
2+
Base classes to share code for the pretty-printers defined in gnatdbg.
3+
"""
4+
15
import gdb
26

37

gnatdbg/sets.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
"""
2+
Pretty-printers for hashed and ordered sets in Ada.Containers.
3+
"""
4+
15
from gnatdbg.generics import Match
26
from gnatdbg.hash_tables import iterate, get_htable_pattern
37
from gnatdbg.printers import PrettyPrinter

gnatdbg/strings.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
"""
2+
Pretty-printers and helpers for strings, string accesses and unbounded strings.
3+
"""
4+
15
import gdb
26

37
from gnatdbg.generics import Match

gnatdbg/utils.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
"""
2+
Gathering of various helpers that don't deserve their own submodule.
3+
"""
4+
15
import gdb
26
import gdb.printing
37

gnatdbg/vectors.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
"""
2+
Pretty-printers for vectors in Ada.Containers.Vectors.
3+
"""
4+
15
import gdb
26

37
from gnatdbg.generics import Match

0 commit comments

Comments
 (0)