diff options
author | Skip Montanaro <skip@pobox.com> | 2005-03-09 03:01:31 (GMT) |
---|---|---|
committer | Skip Montanaro <skip@pobox.com> | 2005-03-09 03:01:31 (GMT) |
commit | 1c7ddb625e88ac80eeb76ed8ddae2937a911a45f (patch) | |
tree | 7837e4f0035867f6dbec56d55c618a60fe3bf72f /Doc | |
parent | 8e97fbf360730bf1297c657cf41e6aa4143dd8c8 (diff) | |
download | cpython-1c7ddb625e88ac80eeb76ed8ddae2937a911a45f.zip cpython-1c7ddb625e88ac80eeb76ed8ddae2937a911a45f.tar.gz cpython-1c7ddb625e88ac80eeb76ed8ddae2937a911a45f.tar.bz2 |
hmmm... moving def'n of version makes the __init__ unnecessary for the
example
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/lib/liburllib.tex | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/Doc/lib/liburllib.tex b/Doc/lib/liburllib.tex index f9742a2..f41b26c 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} |