ladybird/Ports/python3/patches
2021-05-09 17:15:15 +01:00
..
define-have-sigset-t.patch Ports: Update Python to 3.9.5 2021-05-06 13:04:38 +01:00
define-py-force-utf8-locale.patch Ports: Update Python to 3.9.5 2021-05-06 13:04:38 +01:00
fix-autoconf.patch Ports: Always set Python MACHDEP to version-less 'serenityos' 2021-05-06 16:46:43 +01:00
ReadMe.md Ports: Add note about Python webbrowser patch upstreaming 2021-05-09 17:15:15 +01:00
remove-setlocale-from-preconfig.patch Ports: Update Python to 3.9.5 2021-05-06 13:04:38 +01:00
webbrowser.patch Ports: Register Browser in the Python webbrowser module 2021-05-06 14:26:09 +01:00

Patches for Python 3.9 on SerenityOS

define-have-sigset-t.patch

Ensures HAVE_SIGSET_T is defined, as we do have sigset_t but it's not detected properly due to some related functions being missing.

define-py-force-utf8-locale.patch

Enforce UTF-8 as encoding by defining _Py_FORCE_UTF8_LOCALE.

fix-autoconf.patch

As usual, make the configure script recognize Serenity. Also set MACHDEP (which is used for sys.platform) to a version-less serenityos, even when not cross-compiling.

remove-setlocale-from-preconfig.patch

Our stub implementation of setlocale() always returns nullptr, which the interpreter considers critical enough to exit right away.

webbrowser.patch

Register the SerenityOS Browser in the webbrowser module.

Note: This change has been added to upstream CPython and will be included in the Python 3.10 release :^)