[Python-checkins] CVS: python/dist/src/Lib urllib.py,1.122,1.123

Jack Jansen jackjansen@users.sourceforge.net
Mon, 05 Mar 2001 05:45:40 -0800


Update of /cvsroot/python/python/dist/src/Lib
In directory usw-pr-cvs1:/tmp/cvs-serv26039

Modified Files:
	urllib.py 
Log Message:
Grr, splittag was also missing from __all__.


Index: urllib.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/urllib.py,v
retrieving revision 1.122
retrieving revision 1.123
diff -C2 -r1.122 -r1.123
*** urllib.py	2001/03/05 13:41:14	1.122
--- urllib.py	2001/03/05 13:45:38	1.123
***************
*** 31,35 ****
  __all__ = ["urlopen", "URLopener", "FancyURLopener", "urlretrieve",
             "urlcleanup", "quote", "quote_plus", "unquote", "unquote_plus",
!            "urlencode", "url2pathname", "pathname2url"]
  
  __version__ = '1.15'    # XXX This version is not always updated :-(
--- 31,35 ----
  __all__ = ["urlopen", "URLopener", "FancyURLopener", "urlretrieve",
             "urlcleanup", "quote", "quote_plus", "unquote", "unquote_plus",
!            "urlencode", "url2pathname", "pathname2url", "splittag"]
  
  __version__ = '1.15'    # XXX This version is not always updated :-(