Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
8de91194
Commit
8de91194
authored
May 26, 2008
by
Georg Brandl
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add renaming notices to 3.0 http package members.
parent
8b12ee10
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
30 additions
and
5 deletions
+30
-5
Doc/library/basehttpserver.rst
Doc/library/basehttpserver.rst
+5
-1
Doc/library/cgihttpserver.rst
Doc/library/cgihttpserver.rst
+5
-1
Doc/library/cookie.rst
Doc/library/cookie.rst
+5
-1
Doc/library/cookielib.rst
Doc/library/cookielib.rst
+5
-1
Doc/library/httplib.rst
Doc/library/httplib.rst
+5
-1
Doc/library/simplehttpserver.rst
Doc/library/simplehttpserver.rst
+5
-0
No files found.
Doc/library/basehttpserver.rst
View file @
8de91194
:mod:`BaseHTTPServer` --- Basic HTTP server
===========================================
.. module:: BaseHTTPServer
:synopsis: Basic HTTP server (base class for SimpleHTTPServer and CGIHTTPServer).
.. note::
The :mod:`BaseHTTPServer` module has been merged into :mod:`http.server` in
Python 3.0. The :term:`2to3` tool will automatically adapt imports when
converting your sources to 3.0.
.. index::
pair: WWW; server
...
...
Doc/library/cgihttpserver.rst
View file @
8de91194
:mod:`CGIHTTPServer` --- CGI-capable HTTP request handler
=========================================================
...
...
@@ -7,6 +6,11 @@
scripts.
.. sectionauthor:: Moshe Zadka <moshez@zadka.site.co.il>
.. note::
The :mod:`CGIHTTPServer` module has been merged into :mod:`http.server` in
Python 3.0. The :term:`2to3` tool will automatically adapt imports when
converting your sources to 3.0.
The :mod:`CGIHTTPServer` module defines a request-handler class, interface
compatible with :class:`BaseHTTPServer.BaseHTTPRequestHandler` and inherits
...
...
Doc/library/cookie.rst
View file @
8de91194
:mod:`Cookie` --- HTTP state management
=======================================
...
...
@@ -7,6 +6,11 @@
.. moduleauthor:: Timothy O'Malley <timo@alum.mit.edu>
.. sectionauthor:: Moshe Zadka <moshez@zadka.site.co.il>
.. note::
The :mod:`Cookie` module has been renamed to :mod:`http.cookies` in Python
3.0. The :term:`2to3` tool will automatically adapt imports when converting
your sources to 3.0.
The :mod:`Cookie` module defines classes for abstracting the concept of
cookies, an HTTP state management mechanism. It supports both simple string-only
...
...
Doc/library/cookielib.rst
View file @
8de91194
:mod:`cookielib` --- Cookie handling for HTTP clients
=====================================================
...
...
@@ -7,6 +6,11 @@
.. moduleauthor:: John J. Lee <jjl@pobox.com>
.. sectionauthor:: John J. Lee <jjl@pobox.com>
.. note::
The :mod:`cookielib` module has been renamed to :mod:`http.cookiejar` in
Python 3.0. The :term:`2to3` tool will automatically adapt imports when
converting your sources to 3.0.
.. versionadded:: 2.4
...
...
Doc/library/httplib.rst
View file @
8de91194
:mod:`httplib` --- HTTP protocol client
=======================================
.. module:: httplib
:synopsis: HTTP and HTTPS protocol client (requires sockets).
.. note::
The :mod:`httplib` module has been renamed to :mod:`http.client` in Python
3.0. The :term:`2to3` tool will automatically adapt imports when converting
your sources to 3.0.
.. index::
pair: HTTP; protocol
...
...
Doc/library/simplehttpserver.rst
View file @
8de91194
...
...
@@ -6,6 +6,11 @@
:synopsis: This module provides a basic request handler for HTTP servers.
.. sectionauthor:: Moshe Zadka <moshez@zadka.site.co.il>
.. note::
The :mod:`SimpleHTTPServer` module has been merged into :mod:`http.server` in
Python 3.0. The :term:`2to3` tool will automatically adapt imports when
converting your sources to 3.0.
The :mod:`SimpleHTTPServer` module defines a single class,
:class:`SimpleHTTPRequestHandler`, which is interface-compatible with
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment