fix %a bytes example

This commit is contained in:
Ethan Furman 2014-03-26 15:47:12 -07:00
parent c633a95251
commit d8a5b4d315
1 changed files with 1 additions and 1 deletions

View File

@ -136,7 +136,7 @@ Examples::
b'3.14'
>>> b'%a' % b'abc'
b'abc'
b"b'abc'"
>>> b'%a' % 'def'
b"'def'"