From f4224c54118c105e96c5a7e7067e72993c60d61f Mon Sep 17 00:00:00 2001 From: "Michael J. Sullivan" Date: Thu, 29 Jan 2026 11:30:58 -0800 Subject: [PATCH] Rename pre-pep.rst to pep.rst. It is still a draft but it's a draft of a PEP and not of a "pre-PEP". --- README.md | 2 +- spec-draft.rst => design-qs.rst | 0 pre-pep.rst => pep.rst | 0 scripts/build-peps.sh | 2 +- scripts/update-examples.sh | 4 ++-- 5 files changed, 4 insertions(+), 4 deletions(-) rename spec-draft.rst => design-qs.rst (100%) rename pre-pep.rst => pep.rst (100%) diff --git a/README.md b/README.md index 9b7ed49..cdde2c0 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # Computed Types in Python -See [spec-draft.rst](spec-draft.rst) for the specification draft and [pre-pep.rst](pre-pep.rst) for the PEP draft. +See [pep.rst](pep.rst) for the PEP draft and [design-qs.rst](design-qs.rst) for some design discussion not yet merged into the PEP. ## Development diff --git a/spec-draft.rst b/design-qs.rst similarity index 100% rename from spec-draft.rst rename to design-qs.rst diff --git a/pre-pep.rst b/pep.rst similarity index 100% rename from pre-pep.rst rename to pep.rst diff --git a/scripts/build-peps.sh b/scripts/build-peps.sh index e85ecf7..f6110b9 100755 --- a/scripts/build-peps.sh +++ b/scripts/build-peps.sh @@ -9,7 +9,7 @@ if [ ! -d peps ]; then fi cd peps/peps if [ ! -s pep-9999.rst ]; then - ln -s ../../../pre-pep.rst pep-9999.rst + ln -s ../../../pep.rst pep-9999.rst fi cd .. diff --git a/scripts/update-examples.sh b/scripts/update-examples.sh index 773b5b3..b845f35 100755 --- a/scripts/update-examples.sh +++ b/scripts/update-examples.sh @@ -1,8 +1,8 @@ #!/bin/sh scripts/py2rst.py tests/test_qblike_2.py --start "Begin PEP section" --end "End PEP section" \ - | scripts/rst_replace_section.py pre-pep.rst qb-impl -i + | scripts/rst_replace_section.py pep.rst qb-impl -i scripts/py2rst.py tests/test_fastapilike_2.py --start "Begin PEP section" --end "End PEP section" \ - | scripts/rst_replace_section.py pre-pep.rst init-impl -i + | scripts/rst_replace_section.py pep.rst init-impl -i