implemented an input abstraction

This commit is contained in:
Luxferre
2025-12-21 10:48:40 +02:00
parent b49a1d374e
commit f0055ba5ec
2 changed files with 30 additions and 6 deletions
+26
View File
@@ -0,0 +1,26 @@
# deck.input: Standard input abstraction library for max compatibility
# Created by Luxferre in 2025, released into public domain
# init the tdeck_repl input where applicable
try:
from tdeck_repl import input
except:
pass
input = input # reexport the standard Python input method
def input_multi(prompt=None, terminator='.'):
"""Multiline input method (ed-like)"""
buf = []
if prompt is not None:
print(prompt, end='')
while True:
try:
s = input()
if s == terminator: break
else: buf.append(s)
except (KeyboardInterrupt, EOFError):
print()
break
return '\n'.join(buf)