From d8a5b4d315edf0cd7cbf128dbf26fda531c0ce4d Mon Sep 17 00:00:00 2001 From: Ethan Furman Date: Wed, 26 Mar 2014 15:47:12 -0700 Subject: [PATCH] fix %a bytes example --- pep-0461.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pep-0461.txt b/pep-0461.txt index 5f56209b5..ed09fb3b2 100644 --- a/pep-0461.txt +++ b/pep-0461.txt @@ -136,7 +136,7 @@ Examples:: b'3.14' >>> b'%a' % b'abc' - b'abc' + b"b'abc'" >>> b'%a' % 'def' b"'def'"