1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 09:58:11 +00:00

Ports: Remove Python printf fraction length patch

This functionality was implemented in f0fe449, making the patch
unnecessary.
This commit is contained in:
Linus Groh 2021-05-06 15:26:49 +01:00
parent ba6c9423b8
commit 8cfbeb78ff
2 changed files with 0 additions and 43 deletions

View file

@ -20,10 +20,6 @@ As usual, make the `configure` script recognize Serenity.
Our stub implementation of `setlocale()` always returns `nullptr`, which the interpreter considers critical enough to exit right away.
## `tweak-unsupported-printf-format-specifiers.patch`
Replace uses of `%.Ns` with `%s` as the former is not supported by our `printf` implementation yet and would result in empty strings. It uses `snprintf` already, so this is safe.
## `webbrowser.patch`
Register the SerenityOS Browser in the [`webbrowser`](https://docs.python.org/3/library/webbrowser.html) module.