From eca0a0d59bb8f560b8c07c0d30545d2ae270d818 Mon Sep 17 00:00:00 2001 From: Mark Pilgrim Date: Thu, 22 Oct 2009 15:57:13 -0400 Subject: [PATCH] typo --- special-method-names.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/special-method-names.html b/special-method-names.html index c9be80a..6ffe426 100644 --- a/special-method-names.html +++ b/special-method-names.html @@ -729,7 +729,7 @@ class FieldStorage: do something special when leaving a with block with x: -x.__exit__() +x.__exit__(exc_type, exc_value, traceback)

This is how the with file idiom works.