From ab8a999d9bd4a44c84abfd97ecdbacb935dd73dc Mon Sep 17 00:00:00 2001 From: Thomas Waldmann <tw@waldmann-edv.de> Date: Thu, 31 Oct 2024 16:38:58 +0100 Subject: [PATCH] docstrings --- src/borghash/__init__.py | 3 +++ src/borghash/__main__.py | 4 ++++ 2 files changed, 7 insertions(+) diff --git a/src/borghash/__init__.py b/src/borghash/__init__.py index b902cba..a5d2f3b 100644 --- a/src/borghash/__init__.py +++ b/src/borghash/__init__.py @@ -1,2 +1,5 @@ +""" +borghash - hashtable implementations in cython. +""" from .HashTable import HashTable from .HashTableNT import HashTableNT diff --git a/src/borghash/__main__.py b/src/borghash/__main__.py index b9c2e0f..ff85df9 100644 --- a/src/borghash/__main__.py +++ b/src/borghash/__main__.py @@ -1,3 +1,7 @@ +""" +Demonstration of borghash. +""" + def demo(): print("BorgHash demo") print("=============")