]> granicus.if.org Git - python/commitdiff
Typo. Doh!
authorRaymond Hettinger <python@rcn.com>
Mon, 7 Feb 2011 04:00:24 +0000 (04:00 +0000)
committerRaymond Hettinger <python@rcn.com>
Mon, 7 Feb 2011 04:00:24 +0000 (04:00 +0000)
Doc/whatsnew/3.2.rst

index 4b4bbed5241c27f0c8f79c5680171a4b24dfb8af..976352d1df878871cdd2aa152d97cc67dd5fbc4a 100644 (file)
@@ -1886,7 +1886,7 @@ object.  The former returns a string and the latter prints it::
 
 In addition, the :func:`~dis.dis` function now accepts string arguments
 so that the common idiom ``dis(compile(s, '', 'eval'))`` can be shortened
-to ``dis(compile(s))``::
+to ``dis(s)``::
 
     >>> dis('3*x+1 if x%2==1 else x//2')
       1           0 LOAD_NAME                0 (x)