Merge branch 'main' into benchmarks

This commit is contained in:
2026-01-22 04:56:27 +03:00
9 changed files with 337 additions and 333 deletions
+13 -5
View File
@@ -1,6 +1,14 @@
a = BrokenPipeError()
def q(f):
print(id(f))
from argenta.app import AutoCompleter
print(id(a))
q(a)
if __name__ == "__main__":
test_commands: set[str] = {"start", "qwertyu", "stop", "exit"}
hist_file: str = "history.txt"
ac: AutoCompleter = AutoCompleter(autocomplete_button='tab')
ac.initial_setup(test_commands)
while True:
inp: str = ac.prompt(">>> ").strip()
if inp == "exit":
break