From: Skip Montanaro Date: Wed, 9 Mar 2005 03:01:31 +0000 (+0000) Subject: hmmm... moving def'n of version makes the __init__ unnecessary for the X-Git-Tag: v2.5a0~1944 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=1c7ddb625e88ac80eeb76ed8ddae2937a911a45f;p=thirdparty%2FPython%2Fcpython.git hmmm... moving def'n of version makes the __init__ unnecessary for the example --- diff --git a/Doc/lib/liburllib.tex b/Doc/lib/liburllib.tex index f9742a2e94d0..f41b26c8b3c0 100644 --- a/Doc/lib/liburllib.tex +++ b/Doc/lib/liburllib.tex @@ -161,8 +161,6 @@ import urllib class AppURLopener(urllib.FancyURLopener): version = "App/1.7" - def __init__(self, *args): - urllib.FancyURLopener.__init__(self, *args) urllib._urlopener = AppURLopener() \end{verbatim}