8000 PEP 502: Resolve unreferenced footnotes by AA-Turner · Pull Request #3242 · python/peps · GitHub
[go: up one dir, main page]

Skip to content

PEP 502: Resolve unreferenced footnotes #3242

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking &ldqu 8000 o;Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Aug 2, 2023
Merged
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
60 changes: 16 additions & 44 deletions pep-0502.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
PEP: 502
Title: String Interpolation - Extended Discussion
Version: $Revision$
Last-Modified: $Date$
Author: Mike G. Miller
Status: Rejected
Type: Informational
Expand All @@ -22,7 +20,7 @@ To recap that PEP,
a string prefix was introduced that marks the string as a template to be
rendered.
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 c 8000 onventional string format
operation,
with the given expressions from its text extracted and passed instead as
Expand Down Expand Up @@ -650,78 +648,52 @@ References
==========

.. [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

(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

(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

(http://www.tldp.org/LDP/abs/html/arithexp.html)
(https://tldp.org/LDP/abs/html/arithexp.html)

.. [5] Bash Docs

(http://www.tldp.org/LDP/abs/html/commandsub.html)
(https://tldp.org/LDP/abs/html/commandsub.html)

.. [6] Perl Cookbook

(http://docstore.mik.ua/orelly/perl/cookbook/ch01_11.htm)
(https://docstore.mik.ua/orelly/perl/cookbook/ch01_11.htm)

.. [7] Perl Docs

(http://perl6maven.com/perl6-scalar-array-and-hash-interpolation)
(https://web.archive.org/web/20121025185907/https://perl6maven.com/perl6-scalar-array-and-hash-interpolation)

.. [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

(https://en.wikibooks.org/wiki/Ruby_Programming/Syntax/Literals#Interpolation)
A879 (https://en.wikibooks.org/wiki/Ruby_Programming/Syntax/Literals#Interpolation)

.. [10] Python Str.Format Syntax

(https://docs.python.org/3/library/string.html#format-string-syntax)
(https://docs.python.org/3.6/library/string.html#format-string-syntax)

.. [11] Python Format-Spec Mini Language

(https://docs.python.org/3/library/string.html#format-specification-mini-language)
(https://docs.python.org/3.6/library/string.html#format-specification-mini-language)

.. [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

(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

(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

(https://mail.python.org/pipermail/python-dev/2015-August/141289.html)
(https://mail.python.org/pipermail/python-dev/2015-August/141289.html)


Copyright
=========

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:
0