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 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