Defer PEP 501

This commit is contained in:
Nick Coghlan 2015-09-05 22:07:14 +10:00
parent a4d83001ce
commit 8639c5c8cd
1 changed files with 10 additions and 1 deletions

View File

@ -3,7 +3,7 @@ Title: General purpose string interpolation
Version: $Revision$ Version: $Revision$
Last-Modified: $Date$ Last-Modified: $Date$
Author: Nick Coghlan <ncoghlan@gmail.com> Author: Nick Coghlan <ncoghlan@gmail.com>
Status: Draft Status: Deferred
Type: Standards Track Type: Standards Track
Content-Type: text/x-rst Content-Type: text/x-rst
Requires: 498 Requires: 498
@ -43,6 +43,15 @@ Some possible examples of the proposed syntax::
myresponse = html(i"<html><body>{response.body}</body></html>") myresponse = html(i"<html><body>{response.body}</body></html>")
logging.debug(i"Message with {detailed} {debugging} {info}") logging.debug(i"Message with {detailed} {debugging} {info}")
PEP Deferral
============
This PEP is currently deferred pending further experience with PEP 498's
simpler approach of only supporting eager rendering without the additional
complexity of also supporting deferred rendering.
Summary of differences from PEP 498 Summary of differences from PEP 498
=================================== ===================================