diff options
author | Georg Brandl <georg@python.org> | 2008-06-23 11:44:14 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2008-06-23 11:44:14 (GMT) |
commit | 029986af249f71a5603110a0f5f0b18d0f335828 (patch) | |
tree | 90fafdd902e370d05952d900b7270043ad4c0053 /Misc/cheatsheet | |
parent | 0f7ede45693be57ba51c7aa23a0d841f160de874 (diff) | |
download | cpython-029986af249f71a5603110a0f5f0b18d0f335828.zip cpython-029986af249f71a5603110a0f5f0b18d0f335828.tar.gz cpython-029986af249f71a5603110a0f5f0b18d0f335828.tar.bz2 |
Fix old urllib/urllib2/urlparse usage.
Diffstat (limited to 'Misc/cheatsheet')
-rw-r--r-- | Misc/cheatsheet | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Misc/cheatsheet b/Misc/cheatsheet index 0f18ac3..e5d61af 100644 --- a/Misc/cheatsheet +++ b/Misc/cheatsheet @@ -1889,7 +1889,6 @@ random Random variable generators re Regular Expressions. reprlib Redo repr() but with limits on most sizes. rlcompleter Word completion for GNU readline 2.0. -robotparser Parse robots.txt files, useful for web spiders. sched A generally useful event scheduler class. shelve Manage shelves of pickled objects. shlex Lexical analyzer class for simple shell-like syntaxes. @@ -1920,8 +1919,9 @@ turtle LogoMation-like turtle graphics types Define names for all type symbols in the std interpreter. tzparse Parse a timezone specification. unicodedata Interface to unicode properties. -urllib Open an arbitrary URL. -urlparse Parse URLs according to latest draft of standard. +urllib.parse Parse URLs according to latest draft of standard. +urllib.request Open an arbitrary URL. +urllib.robotparser Parse robots.txt files, useful for web spiders. user Hook to allow user-specified customization code to run. uu UUencode/UUdecode. unittest Utilities for implementing unit testing. |