~ubuntu-branches/ubuntu/saucy/python2.7/saucy-proposed

« back to all changes in this revision

Viewing changes to Doc/library/urllib.rst

  • Committer: Package Import Robot
  • Author(s): Matthias Klose
  • Date: 2013-05-15 19:15:16 UTC
  • mto: (36.1.23 sid)
  • mto: This revision was merged to the branch mainline in revision 87.
  • Revision ID: package-import@ubuntu.com-20130515191516-zmv6to904wemey7s
Tags: upstream-2.7.5
ImportĀ upstreamĀ versionĀ 2.7.5

Show diffs side-by-side

added added

removed removed

Lines of Context:
280
280
   find it, looks for proxy information from Mac OSX System Configuration for
281
281
   Mac OS X and Windows Systems Registry for Windows.
282
282
 
 
283
.. note::
 
284
    urllib also exposes certain utility functions like splittype, splithost and
 
285
    others parsing url into various components. But it is recommended to use
 
286
    :mod:`urlparse` for parsing urls than using these functions directly.
 
287
    Python 3 does not expose these helper functions from :mod:`urllib.parse`
 
288
    module.
 
289
 
283
290
 
284
291
URL Opener objects
285
292
------------------