PEP 502: Resolve unreferenced footnotes (#3242)
This commit is contained in:
parent
79be95d211
commit
08ec298efd
60
pep-0502.txt
60
pep-0502.txt
|
@ -1,7 +1,5 @@
|
||||||
PEP: 502
|
PEP: 502
|
||||||
Title: String Interpolation - Extended Discussion
|
Title: String Interpolation - Extended Discussion
|
||||||
Version: $Revision$
|
|
||||||
Last-Modified: $Date$
|
|
||||||
Author: Mike G. Miller
|
Author: Mike G. Miller
|
||||||
Status: Rejected
|
Status: Rejected
|
||||||
Type: Informational
|
Type: Informational
|
||||||
|
@ -22,7 +20,7 @@ To recap that PEP,
|
||||||
a string prefix was introduced that marks the string as a template to be
|
a string prefix was introduced that marks the string as a template to be
|
||||||
rendered.
|
rendered.
|
||||||
These formatted strings may contain one or more expressions
|
These formatted strings may contain one or more expressions
|
||||||
built on `the existing syntax`_ of ``str.format()``.
|
built on `the existing syntax`_ of ``str.format()``. [10]_ [11]_
|
||||||
The formatted string expands at compile-time into a conventional string format
|
The formatted string expands at compile-time into a conventional string format
|
||||||
operation,
|
operation,
|
||||||
with the given expressions from its text extracted and passed instead as
|
with the given expressions from its text extracted and passed instead as
|
||||||
|
@ -650,78 +648,52 @@ References
|
||||||
==========
|
==========
|
||||||
|
|
||||||
.. [1] Briefer String Format
|
.. [1] Briefer String Format
|
||||||
|
(https://mail.python.org/pipermail/python-ideas/2015-July/034659.html)
|
||||||
(https://mail.python.org/pipermail/python-ideas/2015-July/034659.html)
|
|
||||||
|
|
||||||
.. [2] Briefer String Format
|
.. [2] Briefer String Format
|
||||||
|
(https://mail.python.org/pipermail/python-ideas/2015-July/034669.html)
|
||||||
(https://mail.python.org/pipermail/python-ideas/2015-July/034669.html)
|
|
||||||
|
|
||||||
.. [3] Briefer String Format
|
.. [3] Briefer String Format
|
||||||
|
(https://mail.python.org/pipermail/python-ideas/2015-July/034701.html)
|
||||||
(https://mail.python.org/pipermail/python-ideas/2015-July/034701.html)
|
|
||||||
|
|
||||||
.. [4] Bash Docs
|
.. [4] Bash Docs
|
||||||
|
(https://tldp.org/LDP/abs/html/arithexp.html)
|
||||||
(http://www.tldp.org/LDP/abs/html/arithexp.html)
|
|
||||||
|
|
||||||
.. [5] Bash Docs
|
.. [5] Bash Docs
|
||||||
|
(https://tldp.org/LDP/abs/html/commandsub.html)
|
||||||
(http://www.tldp.org/LDP/abs/html/commandsub.html)
|
|
||||||
|
|
||||||
.. [6] Perl Cookbook
|
.. [6] Perl Cookbook
|
||||||
|
(https://docstore.mik.ua/orelly/perl/cookbook/ch01_11.htm)
|
||||||
(http://docstore.mik.ua/orelly/perl/cookbook/ch01_11.htm)
|
|
||||||
|
|
||||||
.. [7] Perl Docs
|
.. [7] Perl Docs
|
||||||
|
(https://web.archive.org/web/20121025185907/https://perl6maven.com/perl6-scalar-array-and-hash-interpolation)
|
||||||
(http://perl6maven.com/perl6-scalar-array-and-hash-interpolation)
|
|
||||||
|
|
||||||
.. [8] Ruby Docs
|
.. [8] Ruby Docs
|
||||||
|
(http://ruby-doc.org/core-2.1.1/doc/syntax/literals_rdoc.html#label-Strings)
|
||||||
(http://ruby-doc.org/core-2.1.1/doc/syntax/literals_rdoc.html#label-Strings)
|
|
||||||
|
|
||||||
.. [9] Ruby Docs
|
.. [9] Ruby Docs
|
||||||
|
(https://en.wikibooks.org/wiki/Ruby_Programming/Syntax/Literals#Interpolation)
|
||||||
(https://en.wikibooks.org/wiki/Ruby_Programming/Syntax/Literals#Interpolation)
|
|
||||||
|
|
||||||
.. [10] Python Str.Format Syntax
|
.. [10] Python Str.Format Syntax
|
||||||
|
(https://docs.python.org/3.6/library/string.html#format-string-syntax)
|
||||||
(https://docs.python.org/3/library/string.html#format-string-syntax)
|
|
||||||
|
|
||||||
.. [11] Python Format-Spec Mini Language
|
.. [11] Python Format-Spec Mini Language
|
||||||
|
(https://docs.python.org/3.6/library/string.html#format-specification-mini-language)
|
||||||
(https://docs.python.org/3/library/string.html#format-specification-mini-language)
|
|
||||||
|
|
||||||
.. [12] Escaping of Input Variables
|
.. [12] Escaping of Input Variables
|
||||||
|
(https://mail.python.org/pipermail/python-ideas/2015-August/035532.html)
|
||||||
(https://mail.python.org/pipermail/python-ideas/2015-August/035532.html)
|
|
||||||
|
|
||||||
.. [13] Environment Access and Command Substitution
|
.. [13] Environment Access and Command Substitution
|
||||||
|
(https://mail.python.org/pipermail/python-ideas/2015-August/035554.html)
|
||||||
(https://mail.python.org/pipermail/python-ideas/2015-August/035554.html)
|
|
||||||
|
|
||||||
.. [14] Extensible String Prefixes
|
.. [14] Extensible String Prefixes
|
||||||
|
(https://mail.python.org/pipermail/python-ideas/2015-August/035336.html)
|
||||||
(https://mail.python.org/pipermail/python-ideas/2015-August/035336.html)
|
|
||||||
|
|
||||||
|
|
||||||
.. [15] Literal String Formatting
|
.. [15] Literal String Formatting
|
||||||
|
(https://mail.python.org/pipermail/python-dev/2015-August/141289.html)
|
||||||
(https://mail.python.org/pipermail/python-dev/2015-August/141289.html)
|
|
||||||
|
|
||||||
|
|
||||||
Copyright
|
Copyright
|
||||||
=========
|
=========
|
||||||
|
|
||||||
This document has been placed in the public domain.
|
This document has been placed in the public domain.
|
||||||
|
|
||||||
|
|
||||||
..
|
|
||||||
Local Variables:
|
|
||||||
mode: indented-text
|
|
||||||
indent-tabs-mode: nil
|
|
||||||
sentence-end-double-space: t
|
|
||||||
fill-column: 70
|
|
||||||
coding: utf-8
|
|
||||||
End:
|
|
||||||
|
|
Loading…
Reference in New Issue