The last of the PEP 3108 (standard lib reorg) changes landed for the
first beta, so urllib is now a package of assorted URL related modules.
>>> import urllib
>>> help(urllib)
Help on package urllib:
NAME
urllib
FILE
/home/ncoghlan/devel/py3k/Lib/urllib/__init__.py
PACKAGE CONTENTS
For Windows XP SP3:
.python
Python 3.0b1 (r30b1:64403M, Jun 19 2008, 14:56:09) [MSC v.1500 32 bit
(Intel)] on win32
Type "help", "copyright", "credits" or "license" for more information.
>>> import urllib
>>> opener = urllib.FancyURLopener({})
Traceback (most recent call last):
File "", line 1,