Changed title.

This commit is contained in:
Eric V. Smith 2015-08-30 09:16:20 -04:00
parent 06be15f446
commit e87b03e606
1 changed files with 4 additions and 4 deletions

View File

@ -1,5 +1,5 @@
PEP: 498
Title: Literal String Formatting
Title: Literal String Interpolation
Version: $Revision$
Last-Modified: $Date$
Author: Eric V. Smith <eric@trueblade.com>
@ -8,7 +8,7 @@ Type: Standards Track
Content-Type: text/x-rst
Created: 01-Aug-2015
Python-Version: 3.6
Post-History: 07-Aug-2015
Post-History: 07-Aug-2015, 30-Aug-2015
Abstract
========
@ -18,9 +18,9 @@ Python supports multiple ways to format text strings. These include
[#]_. Each of these methods have their advantages, but in addition
have disadvantages that make them cumbersome to use in practice. This
PEP proposed to add a new string formatting mechanism: Literal String
Formatting. In this PEP, such strings will be refered to as
Interpolation. In this PEP, such strings will be refered to as
"f-strings", taken from the leading character used to denote such
strings.
strings, and standing for "formatted strings".
This PEP does not propose to remove or deprecate any of the existing
string formatting mechanisms.