Skip to content

Commit 08ec298

Browse files
authored
PEP 502: Resolve unreferenced footnotes (#3242)
1 parent 79be95d commit 08ec298

File tree

1 file changed

+16
-44
lines changed

1 file changed

+16
-44
lines changed

pep-0502.txt

Lines changed: 16 additions & 44 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
PEP: 502
22
Title: String Interpolation - Extended Discussion
3-
Version: $Revision$
4-
Last-Modified: $Date$
53
Author: Mike G. Miller
64
Status: Rejected
75
Type: Informational
@@ -22,7 +20,7 @@ To recap that PEP,
2220
a string prefix was introduced that marks the string as a template to be
2321
rendered.
2422
These formatted strings may contain one or more expressions
25-
built on `the existing syntax`_ of ``str.format()``.
23+
built on `the existing syntax`_ of ``str.format()``. [10]_ [11]_
2624
The formatted string expands at compile-time into a conventional string format
2725
operation,
2826
with the given expressions from its text extracted and passed instead as
@@ -650,78 +648,52 @@ References
650648
==========
651649

652650
.. [1] Briefer String Format
653-
654-
(https://mail.python.org/pipermail/python-ideas/2015-July/034659.html)
651+
(https://mail.python.org/pipermail/python-ideas/2015-July/034659.html)
655652

656653
.. [2] Briefer String Format
657-
658-
(https://mail.python.org/pipermail/python-ideas/2015-July/034669.html)
654+
(https://mail.python.org/pipermail/python-ideas/2015-July/034669.html)
659655

660656
.. [3] Briefer String Format
661-
662-
(https://mail.python.org/pipermail/python-ideas/2015-July/034701.html)
657+
(https://mail.python.org/pipermail/python-ideas/2015-July/034701.html)
663658

664659
.. [4] Bash Docs
665-
666-
(http://www.tldp.org/LDP/abs/html/arithexp.html)
660+
(https://tldp.org/LDP/abs/html/arithexp.html)
667661

668662
.. [5] Bash Docs
669-
670-
(http://www.tldp.org/LDP/abs/html/commandsub.html)
663+
(https://tldp.org/LDP/abs/html/commandsub.html)
671664

672665
.. [6] Perl Cookbook
673-
674-
(http://docstore.mik.ua/orelly/perl/cookbook/ch01_11.htm)
666+
(https://docstore.mik.ua/orelly/perl/cookbook/ch01_11.htm)
675667

676668
.. [7] Perl Docs
677-
678-
(http://perl6maven.com/perl6-scalar-array-and-hash-interpolation)
669+
(https://web.archive.org/web/20121025185907/https://perl6maven.com/perl6-scalar-array-and-hash-interpolation)
679670

680671
.. [8] Ruby Docs
681-
682-
(http://ruby-doc.org/core-2.1.1/doc/syntax/literals_rdoc.html#label-Strings)
672+
(http://ruby-doc.org/core-2.1.1/doc/syntax/literals_rdoc.html#label-Strings)
683673

684674
.. [9] Ruby Docs
685-
686-
(https://en.wikibooks.org/wiki/Ruby_Programming/Syntax/Literals#Interpolation)
675+
(https://en.wikibooks.org/wiki/Ruby_Programming/Syntax/Literals#Interpolation)
687676

688677
.. [10] Python Str.Format Syntax
689-
690-
(https://docs.python.org/3/library/string.html#format-string-syntax)
678+
(https://docs.python.org/3.6/library/string.html#format-string-syntax)
691679

692680
.. [11] Python Format-Spec Mini Language
693-
694-
(https://docs.python.org/3/library/string.html#format-specification-mini-language)
681+
(https://docs.python.org/3.6/library/string.html#format-specification-mini-language)
695682

696683
.. [12] Escaping of Input Variables
697-
698-
(https://mail.python.org/pipermail/python-ideas/2015-August/035532.html)
684+
(https://mail.python.org/pipermail/python-ideas/2015-August/035532.html)
699685

700686
.. [13] Environment Access and Command Substitution
701-
702-
(https://mail.python.org/pipermail/python-ideas/2015-August/035554.html)
687+
(https://mail.python.org/pipermail/python-ideas/2015-August/035554.html)
703688

704689
.. [14] Extensible String Prefixes
705-
706-
(https://mail.python.org/pipermail/python-ideas/2015-August/035336.html)
707-
690+
(https://mail.python.org/pipermail/python-ideas/2015-August/035336.html)
708691

709692
.. [15] Literal String Formatting
710-
711-
(https://mail.python.org/pipermail/python-dev/2015-August/141289.html)
693+
(https://mail.python.org/pipermail/python-dev/2015-August/141289.html)
712694

713695

714696
Copyright
715697
=========
716698

717699
This document has been placed in the public domain.
718-
719-
720-
..
721-
Local Variables:
722-
mode: indented-text
723-
indent-tabs-mode: nil
724-
sentence-end-double-space: t
725-
fill-column: 70
726-
coding: utf-8
727-
End:

0 commit comments

Comments
 (0)