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 c8d49bda3d - Show all commits

View File

@ -53,7 +53,7 @@ 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 = []
engine = """ ____ engine = r""" ____
|____| ------------ |____| ------------
| | === | ------ | | | === | ------ |
___| |__| |_____| | O | | ___| |__| |_____| | O | |
@ -65,7 +65,7 @@ engine = """ ____
//// \__/ \__/ \__/ \__/ """ //// \__/ \__/ \__/ \__/ """
engine = engine.split("\n") engine = engine.split("\n")
caboose = """ || caboose = r""" ||
============= || ============= ||
=========| |========== =========| |==========
| ---- ---- | | ---- ---- |
@ -77,7 +77,7 @@ caboose = """ ||
\__/ \__/ \__/ \__/ """ \__/ \__/ \__/ \__/ """
caboose = caboose.split("\n") caboose = caboose.split("\n")
default_car = """ ---------------------------- default_car = r""" ----------------------------
| | | |
| YOUR TRAIN CAR HERE! | | YOUR TRAIN CAR HERE! |
| Just create a | | Just create a |