Eureka! Figured out why libedit is breaking in prewarm on macOS via launchd

The prewarm zygote imports the world. shell.py had a top level import
for readline. Which means readline was being imported pre-fork. And of
course as is traditional with Apple libedit is not fork safe. Probably
because it initializes its internal IO routines based on the stdio
handles at time of import which are the handles kitty gets from launchd
This commit is contained in:
Kovid Goyal
2022-08-30 19:35:17 +05:30
parent 78056c659c
commit fca0999814
3 changed files with 4 additions and 14 deletions

View File

@@ -3,7 +3,6 @@
import os
import sys
from typing import Any, Callable, Dict, Generator, Optional, Sequence, Tuple
from kitty.fast_data_types import wcswidth
@@ -149,9 +148,6 @@ class PathCompleter:
def get_path(prompt: str = '> ') -> str:
rd = getattr(sys, 'kitty_run_data')
if 'prewarmed' in rd and 'launched_by_launch_services' in rd:
return input(prompt)
return PathCompleter(prompt).input()