diff options
author | Fred Drake <fdrake@acm.org> | 2000-05-30 14:39:45 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 2000-05-30 14:39:45 (GMT) |
commit | 6c160191365e92c0841d0d02c6939e59f097dd5f (patch) | |
tree | b2bd0c5dce349236e21e1a5c2c4bd4029a554502 /Doc | |
parent | 7f91cf9a68432ad502ff9a25070b74ca62b9ac8d (diff) | |
download | cpython-6c160191365e92c0841d0d02c6939e59f097dd5f.zip cpython-6c160191365e92c0841d0d02c6939e59f097dd5f.tar.gz cpython-6c160191365e92c0841d0d02c6939e59f097dd5f.tar.bz2 |
Fixed typo noted by Guido Kollerie <gkoller@cs.vu.nl> in example code.
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/lib/liburllib.tex | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/lib/liburllib.tex b/Doc/lib/liburllib.tex index 38ee09e..c781ebc 100644 --- a/Doc/lib/liburllib.tex +++ b/Doc/lib/liburllib.tex @@ -173,7 +173,7 @@ class AppURLopener(urllib.FancyURLopener): apply(urllib.FancyURLopener.__init__, (self,) + args) self.version = "App/1.7" -urllib._urlopener = AppURLopener +urllib._urlopener = AppURLopener() \end{verbatim} \begin{classdesc}{URLopener}{\optional{proxies\optional{, **x509}}} |