krz/crumb

A local alternative to your browser's history.

clone: git clone https://gitbay.org/krz/crumb.git

8f21898f3d086b46db77372e33a91577315536d3

verified · cmc

author: Christian Cleberg <hello@cleberg.net> · 2026-08-23T02:16:27Z

Ignore Python bytecode

__pycache__ was not covered, so running the suite left .pyc files staged.
 .gitignore                                               |   5 ++++-
 __pycache__/search.cpython-314.pyc                       | Bin 1701 -> 0 bytes
 __pycache__/server.cpython-314.pyc                       | Bin 3686 -> 0 bytes
 .../__pycache__/test_search.cpython-314-pytest-9.1.1.pyc | Bin 4560 -> 0 bytes
 .../__pycache__/test_server.cpython-314-pytest-9.1.1.pyc | Bin 4751 -> 0 bytes
 5 files changed, 4 insertions(+), 1 deletion(-)

diff --git a/.gitignore b/.gitignore
index f5e96db..ba9399d 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1 +1,4 @@
-venv
\ No newline at end of file
+venv
+__pycache__/
+*.py[cod]
+.pytest_cache/
diff --git a/__pycache__/search.cpython-314.pyc b/__pycache__/search.cpython-314.pyc
deleted file mode 100644
index e384b2b..0000000
Binary files a/__pycache__/search.cpython-314.pyc and /dev/null differ
diff --git a/__pycache__/server.cpython-314.pyc b/__pycache__/server.cpython-314.pyc
deleted file mode 100644
index b728486..0000000
Binary files a/__pycache__/server.cpython-314.pyc and /dev/null differ
diff --git a/tests/__pycache__/test_search.cpython-314-pytest-9.1.1.pyc b/tests/__pycache__/test_search.cpython-314-pytest-9.1.1.pyc
deleted file mode 100644
index a65a65c..0000000
Binary files a/tests/__pycache__/test_search.cpython-314-pytest-9.1.1.pyc and /dev/null differ
diff --git a/tests/__pycache__/test_server.cpython-314-pytest-9.1.1.pyc b/tests/__pycache__/test_server.cpython-314-pytest-9.1.1.pyc
deleted file mode 100644
index b346c63..0000000
Binary files a/tests/__pycache__/test_server.cpython-314-pytest-9.1.1.pyc and /dev/null differ