Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -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

Expand Down
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion scripts/build-peps.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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 ..

Expand Down
4 changes: 2 additions & 2 deletions scripts/update-examples.sh
Original file line number Diff line number Diff line change
@@ -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