Skip to content

Commit 74958b0

Browse files
authored
PEP 750: Update links to example code (#4514)
1 parent 94868c5 commit 74958b0

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

peps/pep-0750.rst

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -549,7 +549,7 @@ Examples
549549
========
550550

551551
All examples in this section of the PEP have fully tested reference implementations
552-
available in the public `pep750-examples <https://github.com/davepeck/pep750-examples>`_
552+
available in the public `pep750-examples <https://github.com/t-strings/pep750-examples>`_
553553
git repository.
554554

555555

@@ -602,8 +602,8 @@ specifiers like ``:.2f``. The full code is fairly simple:
602602

603603
See `fstring.py`__ and `test_fstring.py`__.
604604

605-
__ https://github.com/davepeck/pep750-examples/blob/main/pep/fstring.py
606-
__ https://github.com/davepeck/pep750-examples/blob/main/pep/test_fstring.py
605+
__ https://github.com/t-strings/pep750-examples/blob/main/pep/fstring.py
606+
__ https://github.com/t-strings/pep750-examples/blob/main/pep/test_fstring.py
607607

608608

609609
Example: Structured Logging
@@ -775,8 +775,8 @@ logging:
775775

776776
See `logging.py`__ and `test_logging.py`__.
777777

778-
__ https://github.com/davepeck/pep750-examples/blob/main/pep/logging.py
779-
__ https://github.com/davepeck/pep750-examples/blob/main/pep/test_logging.py
778+
__ https://github.com/t-strings/pep750-examples/blob/main/pep/logging.py
779+
__ https://github.com/t-strings/pep750-examples/blob/main/pep/test_logging.py
780780

781781

782782
Example: HTML Templating
@@ -785,7 +785,7 @@ Example: HTML Templating
785785
This PEP contains several short HTML templating examples. It turns out that the
786786
"hypothetical" ``html()`` function mentioned in the `Motivation`_ section
787787
(and a few other places in this PEP) exists and is available in the
788-
`pep750-examples repository <https://github.com/davepeck/pep750-examples/>`_.
788+
`pep750-examples repository <https://github.com/t-strings/pep750-examples/>`_.
789789
If you're thinking about parsing a complex grammar with template strings, we
790790
hope you'll find it useful.
791791

@@ -1081,8 +1081,8 @@ and is able to ``await`` an interpolation's value.
10811081

10821082
See `afstring.py`__ and `test_afstring.py`__.
10831083

1084-
__ https://github.com/davepeck/pep750-examples/blob/main/pep/afstring.py
1085-
__ https://github.com/davepeck/pep750-examples/blob/main/pep/test_afstring.py
1084+
__ https://github.com/t-strings/pep750-examples/blob/main/pep/afstring.py
1085+
__ https://github.com/t-strings/pep750-examples/blob/main/pep/test_afstring.py
10861086

10871087

10881088
Approaches to Template Reuse
@@ -1157,16 +1157,16 @@ which supports the full grammar of format strings.
11571157

11581158
See `format.py`__ and `test_format.py`__.
11591159

1160-
__ https://github.com/davepeck/pep750-examples/blob/main/pep/format.py
1161-
__ https://github.com/davepeck/pep750-examples/blob/main/pep/test_format.py
1160+
__ https://github.com/t-strings/pep750-examples/blob/main/pep/format.py
1161+
__ https://github.com/t-strings/pep750-examples/blob/main/pep/test_format.py
11621162

11631163

11641164
Reference Implementation
11651165
========================
11661166

11671167
A CPython implementation of PEP 750 is `available <https://github.com/lysnikolaou/cpython/tree/tstrings>`_.
11681168

1169-
There is also a public repository of `examples and tests <https://github.com/davepeck/pep750-examples>`_
1169+
There is also a public repository of `examples and tests <https://github.com/t-strings/pep750-examples>`_
11701170
built around the reference implementation. If you're interested in playing with
11711171
template strings, this repository is a great place to start.
11721172

0 commit comments

Comments
 (0)