]> granicus.if.org Git - python/commitdiff
Merged revisions 82028 via svnmerge from
authorSenthil Kumaran <orsenthil@gmail.com>
Wed, 16 Jun 2010 17:47:48 +0000 (17:47 +0000)
committerSenthil Kumaran <orsenthil@gmail.com>
Wed, 16 Jun 2010 17:47:48 +0000 (17:47 +0000)
svn+ssh://pythondev@svn.python.org/python/branches/py3k

................
  r82028 | senthil.kumaran | 2010-06-16 23:14:57 +0530 (Wed, 16 Jun 2010) | 9 lines

  Merged revisions 82026 via svnmerge from
  svn+ssh://pythondev@svn.python.org/python/trunk

  ........
    r82026 | senthil.kumaran | 2010-06-16 23:07:32 +0530 (Wed, 16 Jun 2010) | 3 lines

    Addressing RDM's review comments on the doc change.
  ........
................

Doc/library/http.server.rst

index 3d15b9eb887061e8ac4bc612d9d5b5ef7f11259a..5fdb5439510aa8213c61955b0a70fd48eb7fae34 100644 (file)
@@ -301,8 +301,10 @@ relative to the current directory.::
         httpd.serve_forever()
 
 :mod:`http.server` can also be invoked directly using the ``-m`` switch of
-interpreter a with ``port number`` argument which interfaces
-:class:`SimpleHTTPRequestHandler` by default.::
+interpreter a with ``port number`` argument which uses
+:class:`SimpleHTTPRequestHandler` as the default request Handler. Similar to
+the previous example, even this serves files relative to the current
+directory.::
 
         python -m http.server 8000