From 3d4d36e5b4b61cbbee93032425c822f2f478449c Mon Sep 17 00:00:00 2001 From: Ben Sima Date: Mon, 20 May 2024 22:06:34 -0400 Subject: Greatly expand Repl.py This adds a few things I found from [this gist][1], but cleaned up quite a bit I think, and designed a bit closer to the ghci user experience. Along the way I figured out what ruff settings will autoformat my imports in one alphabetized section, rather than splitting it into multiple sections for builtins and external deps. So I made that change in the whole repo, but there weren't too many changes. [1]: https://gist.github.com/aliles/1153926 --- Biz/Bild/Example.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'Biz/Bild') diff --git a/Biz/Bild/Example.py b/Biz/Bild/Example.py index 1bd30ae..dd9a6ef 100644 --- a/Biz/Bild/Example.py +++ b/Biz/Bild/Example.py @@ -6,9 +6,8 @@ Example Python file that also serves as a test case for bild. # : out example # : dep cryptography -import sys - import cryptography.fernet +import sys def cryptic_hello(name: str) -> str: -- cgit v1.2.3