mirror of
https://github.com/HKUDS/nanobot.git
synced 2026-04-14 23:19:55 +00:00
On Windows, certain Unicode input (emoji, mixed-script text, surrogate pairs) causes prompt_toolkit's FileHistory to crash with UnicodeEncodeError when writing the history file. Fix: wrap FileHistory with a _SafeFileHistory subclass that sanitizes surrogate characters before writing, replacing invalid sequences instead of crashing. Fixes #2846