Issue #26729: Fixed __text_signature__ for sorted().
Patch by Erik Welch.
diff --git a/Python/bltinmodule.c b/Python/bltinmodule.c
index 9f5db2a..33d2cc2 100644
--- a/Python/bltinmodule.c
+++ b/Python/bltinmodule.c
@@ -2073,7 +2073,7 @@
 [end disabled clinic input]*/
 
 PyDoc_STRVAR(builtin_sorted__doc__,
-"sorted($module, iterable, key=None, reverse=False)\n"
+"sorted($module, iterable, /, *, key=None, reverse=False)\n"
 "--\n"
 "\n"
 "Return a new list containing all items from the iterable in ascending order.\n"