@@ -549,7 +549,7 @@ Examples
549
549
========
550
550
551
551
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 >`_
553
553
git repository.
554
554
555
555
@@ -602,8 +602,8 @@ specifiers like ``:.2f``. The full code is fairly simple:
602
602
603
603
See `fstring.py `__ and `test_fstring.py `__.
604
604
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
607
607
608
608
609
609
Example: Structured Logging
@@ -775,8 +775,8 @@ logging:
775
775
776
776
See `logging.py `__ and `test_logging.py `__.
777
777
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
780
780
781
781
782
782
Example: HTML Templating
@@ -785,7 +785,7 @@ Example: HTML Templating
785
785
This PEP contains several short HTML templating examples. It turns out that the
786
786
"hypothetical" ``html() `` function mentioned in the `Motivation `_ section
787
787
(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/ >`_.
789
789
If you're thinking about parsing a complex grammar with template strings, we
790
790
hope you'll find it useful.
791
791
@@ -1081,8 +1081,8 @@ and is able to ``await`` an interpolation's value.
1081
1081
1082
1082
See `afstring.py `__ and `test_afstring.py `__.
1083
1083
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
1086
1086
1087
1087
1088
1088
Approaches to Template Reuse
@@ -1157,16 +1157,16 @@ which supports the full grammar of format strings.
1157
1157
1158
1158
See `format.py `__ and `test_format.py `__.
1159
1159
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
1162
1162
1163
1163
1164
1164
Reference Implementation
1165
1165
========================
1166
1166
1167
1167
A CPython implementation of PEP 750 is `available <https://github.com/lysnikolaou/cpython/tree/tstrings >`_.
1168
1168
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 >`_
1170
1170
built around the reference implementation. If you're interested in playing with
1171
1171
template strings, this repository is a great place to start.
1172
1172
0 commit comments