From: Andrew Svetlov Date: Thu, 24 Jul 2014 05:08:15 +0000 (+0300) Subject: Fix grammar X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=909d61f7dddb95170f85ffd9aa2381116b9197fd;p=python Fix grammar --- diff --git a/Doc/tutorial/errors.rst b/Doc/tutorial/errors.rst index 6d14cb3480..6f77def118 100644 --- a/Doc/tutorial/errors.rst +++ b/Doc/tutorial/errors.rst @@ -184,7 +184,7 @@ attributes to it as desired. :: ... except Exception as inst: ... print type(inst) # the exception instance ... print inst.args # arguments stored in .args - ... print inst # __str__ allows args to printed directly + ... print inst # __str__ allows args to be printed directly ... x, y = inst.args ... print 'x =', x ... print 'y =', y