1DOLLY 32MODULE startup-python34REQUIRES TOOL slop5REQUIRES TOOL foreground6REQUIRES TOOL test7REQUIRES TOOL printf89FILE /etc/dolly/init.slop10    if test -f "$HOME/.dollyrc"; then11      /bin/foreground /bin/slop -e "$HOME/.dollyrc"12      status=$?13      case "$status" in14        0|130) ;;15        *) printf 'Dolly: %s exited with status %s; continuing.\n' "$HOME/.dollyrc" "$status" >&2 ;;16      esac17    fi18    /bin/foreground -i /bin/slop19    printf '\nDolly: image entry exited; entering the recovery Slop shell.\n'20    /bin/foreground -i /bin/slop2122FILE /home/dolly/.dollyrc23    printf '\033[33mDOLLY / PYTHON\033[0m\n'24    printf 'CPython 3.14 and its C/C++ extension toolchain run inside Dolly.\n'25    printf 'Try: python | bonnie install requests | bonnie install pandas\n'26    printf 'Source extension builds are real browser builds and can take several minutes.\n\n'27