Python 3.13: Fix and polish #1

Merged
vilmibm merged 15 commits from noelle/tilde-train:python-3.13 into trunk 2025-06-02 22:23:23 +00:00
Showing only changes of commit 2ba6a9c0ca - Show all commits

View File

@ -51,7 +51,7 @@ max_cars = 10 ## most cars to include in one train.
print_train = False ## print train to file (instead of the screen scroll) print_train = False ## print train to file (instead of the screen scroll)
train = [""]*max_y ## empty train of correct height. train = [""]*max_y ## empty train of correct height.
cars = [] cars: list[list[str]] = []
engine = [ engine = [
r" ____ ", r" ____ ",