From c06bb2e05110d142a8f01870eb48749c53e57787 Mon Sep 17 00:00:00 2001 From: "Michael J. Sullivan" Date: Fri, 23 Jan 2026 18:27:30 -0800 Subject: [PATCH 1/2] Remove some obsolete text from the PEP --- pre-pep.rst | 2 -- 1 file changed, 2 deletions(-) diff --git a/pre-pep.rst b/pre-pep.rst index f11ced1..c2e00a9 100644 --- a/pre-pep.rst +++ b/pre-pep.rst @@ -784,8 +784,6 @@ values too? Generic Callable '''''''''''''''' -Two possibilities for creating parameterized functions/types. They are kind of more syntax than functions exactly. I like the lambda one more. - * ``GenericCallable[Vs, Ty]``: A generic callable. ``Vs`` are a tuple type of unbound type variables and ``Ty`` should be a ``Callable``, ``staticmethod``, or ``classmethod`` that has access to the From 4bfb0f3141df63f03e84dc47f81e9ae38fe039d9 Mon Sep 17 00:00:00 2001 From: "Michael J. Sullivan" Date: Fri, 23 Jan 2026 18:31:38 -0800 Subject: [PATCH 2/2] Put our pep front --- scripts/build-peps.sh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/scripts/build-peps.sh b/scripts/build-peps.sh index 11bb83d..e85ecf7 100755 --- a/scripts/build-peps.sh +++ b/scripts/build-peps.sh @@ -17,5 +17,9 @@ cd .. # vercel builds and I can't be bothered to look into it more, so just # don't worry about failures too much here. make html || true + +# Copy the pep we care about over the index +cp build/pep-9999.html build/index.html + rm -rf ../html cp -r build ../html