From 91d9d4c8727dc4e2db740e2adba1452f4187179b Mon Sep 17 00:00:00 2001 From: Trysdyn Black Date: Mon, 17 Feb 2025 10:43:58 -0800 Subject: [PATCH] Remove pythonrc log disabling It doesn't work in 3.13 and it's not super important anyway --- .config/pythonrc | 8 -------- 1 file changed, 8 deletions(-) diff --git a/.config/pythonrc b/.config/pythonrc index c610b88..2cf0d35 100644 --- a/.config/pythonrc +++ b/.config/pythonrc @@ -1,11 +1,3 @@ -try: - import readline -except ImportError: - print("Module readline not available.") -else: - # Don't write history on exit - readline.write_history_file = lambda *args: None - # Try to install rich's prettification stuff try: import rich.pretty