View | Details | Raw Unified | Return to bug 36977
Collapse All | Expand All

(-)Mk/bsd.python.mk (-5 / +5 lines)
Lines 79-85 Link Here
79
_PYTHON_VERSION!=	(python -c 'import sys; print sys.version[:3]') 2> /dev/null \
79
_PYTHON_VERSION!=	(python -c 'import sys; print sys.version[:3]') 2> /dev/null \
80
					|| echo 2.2
80
					|| echo 2.2
81
PYTHON_VERSION?=	python${_PYTHON_VERSION}
81
PYTHON_VERSION?=	python${_PYTHON_VERSION}
82
_PYTHON_PORTVERSION=	2.2
82
_PYTHON_PORTVERSION=	2.2.1
83
PYTHON_PORTVERSION!=	(${PYTHON_VERSION} -c 'import string, sys; \
83
PYTHON_PORTVERSION!=	(${PYTHON_VERSION} -c 'import string, sys; \
84
								print string.split(sys.version)[0]') 2> /dev/null \
84
								print string.split(sys.version)[0]') 2> /dev/null \
85
					|| echo ${_PYTHON_PORTVERSION}
85
					|| echo ${_PYTHON_PORTVERSION}
Lines 91-97 Link Here
91
91
92
PYTHON_DISTFILE=	Python-${_PYTHON_PORTVERSION}.tgz
92
PYTHON_DISTFILE=	Python-${_PYTHON_PORTVERSION}.tgz
93
PYTHON_PORTSDIR=	${PORTSDIR}/lang/python
93
PYTHON_PORTSDIR=	${PORTSDIR}/lang/python
94
PYTHON_REL=			220
94
PYTHON_REL=			221
95
PYTHON_SUFFIX=		22
95
PYTHON_SUFFIX=		22
96
PYTHON_WRKSRC=		${WRKDIR}/Python-${_PYTHON_PORTVERSION}
96
PYTHON_WRKSRC=		${WRKDIR}/Python-${_PYTHON_PORTVERSION}
97
97
Lines 100-110 Link Here
100
PYDISTUTILS=	${PYTHON_LIBDIR}/distutils/core.py:${PYTHON_PORTSDIR}
100
PYDISTUTILS=	${PYTHON_LIBDIR}/distutils/core.py:${PYTHON_PORTSDIR}
101
PYXML=			${PYTHON_SITELIBDIR}/_xmlplus/__init__.py:${PORTSDIR}/textproc/py-xml
101
PYXML=			${PYTHON_SITELIBDIR}/_xmlplus/__init__.py:${PORTSDIR}/textproc/py-xml
102
102
103
PYTHON_DISTFILE=	Python-2.1.2.tgz
103
PYTHON_DISTFILE=	Python-2.1.3.tgz
104
PYTHON_PORTSDIR=	${PORTSDIR}/lang/python21
104
PYTHON_PORTSDIR=	${PORTSDIR}/lang/python21
105
PYTHON_REL=			212
105
PYTHON_REL=			213
106
PYTHON_SUFFIX=		21
106
PYTHON_SUFFIX=		21
107
PYTHON_WRKSRC=		${WRKDIR}/Python-2.1.2
107
PYTHON_WRKSRC=		${WRKDIR}/Python-2.1.3
108
108
109
# Python-2.0
109
# Python-2.0
110
.elif ${PYTHON_VERSION} == "python2.0"
110
.elif ${PYTHON_VERSION} == "python2.0"
(-)lang/python/Makefile (-2 / +1 lines)
Lines 6-13 Link Here
6
#
6
#
7
7
8
PORTNAME=	python
8
PORTNAME=	python
9
PORTVERSION=	2.2
9
PORTVERSION=	2.2.1
10
PORTREVISION=	2
11
CATEGORIES=	lang python ipv6
10
CATEGORIES=	lang python ipv6
12
MASTER_SITES=	http://www.python.org/ftp/python/${PORTVERSION}/ \
11
MASTER_SITES=	http://www.python.org/ftp/python/${PORTVERSION}/ \
13
		${MASTER_SITE_SOURCEFORGE} \
12
		${MASTER_SITE_SOURCEFORGE} \
(-)lang/python/distinfo (-1 / +1 lines)
Line 1 Link Here
1
MD5 (python/Python-2.2.tgz) = 87febf0780c8e18454022d34b2ca70a0
1
MD5 (python/Python-2.2.1.tgz) = e7012d611602b62e36073c2fd02396a3
(-)lang/python/files/patch-PyObject_DelItemString (-56 lines)
Lines 1-56 Link Here
1
Index: Include/abstract.h
2
===================================================================
3
RCS file: /home/python/cvs/python/dist/src/Include/abstract.h,v
4
retrieving revision 2.42
5
retrieving revision 2.43
6
diff -u -r2.42 -r2.43
7
--- Include/abstract.h	28 Nov 2001 16:20:07 -0000	2.42
8
+++ Include/abstract.h	5 Jan 2002 10:50:30 -0000	2.43
9
@@ -445,6 +445,14 @@
10
 	 statement: o[key]=v.
11
        */
12
 
13
+     DL_IMPORT(int) PyObject_DelItemString(PyObject *o, char *key);
14
+
15
+       /*
16
+         Remove the mapping for object, key, from the object *o.
17
+         Returns -1 on failure.  This is equivalent to
18
+         the Python statement: del o[key].
19
+       */
20
+
21
      DL_IMPORT(int) PyObject_DelItem(PyObject *o, PyObject *key);
22
 
23
        /*
24
Index: Objects/abstract.c
25
===================================================================
26
RCS file: /home/python/cvs/python/dist/src/Objects/abstract.c,v
27
retrieving revision 2.93
28
retrieving revision 2.94
29
diff -u -r2.93 -r2.94
30
--- Objects/abstract.c	24 Nov 2001 18:24:47 -0000	2.93
31
+++ Objects/abstract.c	5 Jan 2002 10:50:30 -0000	2.94
32
@@ -174,6 +174,24 @@
33
 	return -1;
34
 }
35
 
36
+int
37
+PyObject_DelItemString(PyObject *o, char *key)
38
+{
39
+	PyObject *okey;
40
+	int ret;
41
+
42
+	if (o == NULL || key == NULL) {
43
+		null_error();
44
+		return -1;
45
+	}
46
+	okey = PyString_FromString(key);
47
+	if (okey == NULL)
48
+		return -1;
49
+	ret = PyObject_DelItem(o, okey);
50
+	Py_DECREF(okey);
51
+	return ret;
52
+}
53
+
54
 int PyObject_AsCharBuffer(PyObject *obj,
55
 			  const char **buffer,
56
 			  int *buffer_len)
(-)lang/python/pkg-plist (-5 / +4 lines)
Lines 1400-1405 Link Here
1400
lib/%%PYTHON_VERSION%%/test/data/msg_20.txt
1400
lib/%%PYTHON_VERSION%%/test/data/msg_20.txt
1401
lib/%%PYTHON_VERSION%%/test/data/msg_21.txt
1401
lib/%%PYTHON_VERSION%%/test/data/msg_21.txt
1402
lib/%%PYTHON_VERSION%%/test/data/msg_22.txt
1402
lib/%%PYTHON_VERSION%%/test/data/msg_22.txt
1403
lib/%%PYTHON_VERSION%%/test/data/msg_23.txt
1403
lib/%%PYTHON_VERSION%%/test/double_const.py
1404
lib/%%PYTHON_VERSION%%/test/double_const.py
1404
lib/%%PYTHON_VERSION%%/test/double_const.pyc
1405
lib/%%PYTHON_VERSION%%/test/double_const.pyc
1405
lib/%%PYTHON_VERSION%%/test/double_const.pyo
1406
lib/%%PYTHON_VERSION%%/test/double_const.pyo
Lines 1827-1832 Link Here
1827
lib/%%PYTHON_VERSION%%/test/test_mutants.py
1828
lib/%%PYTHON_VERSION%%/test/test_mutants.py
1828
lib/%%PYTHON_VERSION%%/test/test_mutants.pyc
1829
lib/%%PYTHON_VERSION%%/test/test_mutants.pyc
1829
lib/%%PYTHON_VERSION%%/test/test_mutants.pyo
1830
lib/%%PYTHON_VERSION%%/test/test_mutants.pyo
1831
lib/%%PYTHON_VERSION%%/test/test_netrc.py
1832
lib/%%PYTHON_VERSION%%/test/test_netrc.pyc
1833
lib/%%PYTHON_VERSION%%/test/test_netrc.pyo
1830
lib/%%PYTHON_VERSION%%/test/test_new.py
1834
lib/%%PYTHON_VERSION%%/test/test_new.py
1831
lib/%%PYTHON_VERSION%%/test/test_new.pyc
1835
lib/%%PYTHON_VERSION%%/test/test_new.pyc
1832
lib/%%PYTHON_VERSION%%/test/test_new.pyo
1836
lib/%%PYTHON_VERSION%%/test/test_new.pyo
Lines 2232-2241 Link Here
2232
%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/embed/demo.c
2236
%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/embed/demo.c
2233
%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/embed/importexc.c
2237
%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/embed/importexc.c
2234
%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/embed/loop.c
2238
%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/embed/loop.c
2235
%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/extend/README
2236
%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/extend/make_clean
2237
%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/extend/make_shared
2238
%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/extend/make_static
2239
%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/imputil/importers.py
2239
%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/imputil/importers.py
2240
%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/md5test/README
2240
%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/md5test/README
2241
%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/md5test/foo
2241
%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/md5test/foo
Lines 2560-2566 Link Here
2560
%%PORTDOCS%%@dirrm share/examples/%%PYTHON_VERSION%%/metaclasses
2560
%%PORTDOCS%%@dirrm share/examples/%%PYTHON_VERSION%%/metaclasses
2561
%%PORTDOCS%%@dirrm share/examples/%%PYTHON_VERSION%%/md5test
2561
%%PORTDOCS%%@dirrm share/examples/%%PYTHON_VERSION%%/md5test
2562
%%PORTDOCS%%@dirrm share/examples/%%PYTHON_VERSION%%/imputil
2562
%%PORTDOCS%%@dirrm share/examples/%%PYTHON_VERSION%%/imputil
2563
%%PORTDOCS%%@dirrm share/examples/%%PYTHON_VERSION%%/extend
2564
%%PORTDOCS%%@dirrm share/examples/%%PYTHON_VERSION%%/embed
2563
%%PORTDOCS%%@dirrm share/examples/%%PYTHON_VERSION%%/embed
2565
%%PORTDOCS%%@dirrm share/examples/%%PYTHON_VERSION%%/curses
2564
%%PORTDOCS%%@dirrm share/examples/%%PYTHON_VERSION%%/curses
2566
%%PORTDOCS%%@dirrm share/examples/%%PYTHON_VERSION%%/comparisons
2565
%%PORTDOCS%%@dirrm share/examples/%%PYTHON_VERSION%%/comparisons
(-)lang/python21/Makefile (-1 / +1 lines)
Lines 6-12 Link Here
6
#
6
#
7
7
8
PORTNAME=	python
8
PORTNAME=	python
9
PORTVERSION=	2.1.2
9
PORTVERSION=	2.1.3
10
CATEGORIES=	lang python
10
CATEGORIES=	lang python
11
MASTER_SITES=	http://www.python.org/ftp/python/${PORTVERSION}/ \
11
MASTER_SITES=	http://www.python.org/ftp/python/${PORTVERSION}/ \
12
		${MASTER_SITE_SOURCEFORGE} \
12
		${MASTER_SITE_SOURCEFORGE} \
(-)lang/python21/distinfo (-1 / +1 lines)
Line 1 Link Here
1
MD5 (python/Python-2.1.2.tgz) = 4af22bded23a55f907365ed7610de8c9
1
MD5 (python/Python-2.1.3.tgz) = a8b04cdc822a6fc833ed9b99c7fba589
(-)lang/python21/pkg-plist (+4 lines)
Lines 1349-1354 Link Here
1349
lib/%%PYTHON_VERSION%%/test/output/test_pickle
1349
lib/%%PYTHON_VERSION%%/test/output/test_pickle
1350
lib/%%PYTHON_VERSION%%/test/output/test_pkg
1350
lib/%%PYTHON_VERSION%%/test/output/test_pkg
1351
lib/%%PYTHON_VERSION%%/test/output/test_poll
1351
lib/%%PYTHON_VERSION%%/test/output/test_poll
1352
lib/%%PYTHON_VERSION%%/test/output/test_popen
1352
lib/%%PYTHON_VERSION%%/test/output/test_popen2
1353
lib/%%PYTHON_VERSION%%/test/output/test_popen2
1353
lib/%%PYTHON_VERSION%%/test/output/test_posixpath
1354
lib/%%PYTHON_VERSION%%/test/output/test_posixpath
1354
lib/%%PYTHON_VERSION%%/test/output/test_pow
1355
lib/%%PYTHON_VERSION%%/test/output/test_pow
Lines 1708-1713 Link Here
1708
lib/%%PYTHON_VERSION%%/test/test_poll.py
1709
lib/%%PYTHON_VERSION%%/test/test_poll.py
1709
lib/%%PYTHON_VERSION%%/test/test_poll.pyc
1710
lib/%%PYTHON_VERSION%%/test/test_poll.pyc
1710
lib/%%PYTHON_VERSION%%/test/test_poll.pyo
1711
lib/%%PYTHON_VERSION%%/test/test_poll.pyo
1712
lib/%%PYTHON_VERSION%%/test/test_popen.py
1713
lib/%%PYTHON_VERSION%%/test/test_popen.pyc
1714
lib/%%PYTHON_VERSION%%/test/test_popen.pyo
1711
lib/%%PYTHON_VERSION%%/test/test_popen2.py
1715
lib/%%PYTHON_VERSION%%/test/test_popen2.py
1712
lib/%%PYTHON_VERSION%%/test/test_popen2.pyc
1716
lib/%%PYTHON_VERSION%%/test/test_popen2.pyc
1713
lib/%%PYTHON_VERSION%%/test/test_popen2.pyo
1717
lib/%%PYTHON_VERSION%%/test/test_popen2.pyo
(-)databases/py-gdbm/distinfo (+2 lines)
Lines 6-8 Link Here
6
MD5 (python/Python-2.1.1.tgz) = eb34371c49b271abc74b42572883e1b4
6
MD5 (python/Python-2.1.1.tgz) = eb34371c49b271abc74b42572883e1b4
7
MD5 (python/Python-2.1.2.tgz) = 4af22bded23a55f907365ed7610de8c9
7
MD5 (python/Python-2.1.2.tgz) = 4af22bded23a55f907365ed7610de8c9
8
MD5 (python/Python-2.2.tgz) = 87febf0780c8e18454022d34b2ca70a0
8
MD5 (python/Python-2.2.tgz) = 87febf0780c8e18454022d34b2ca70a0
9
MD5 (python/Python-2.1.3.tgz) = a8b04cdc822a6fc833ed9b99c7fba589
10
MD5 (python/Python-2.2.1.tgz) = e7012d611602b62e36073c2fd02396a3
(-)math/py-mpz/distinfo (+2 lines)
Lines 6-8 Link Here
6
MD5 (python/Python-2.1.1.tgz) = eb34371c49b271abc74b42572883e1b4
6
MD5 (python/Python-2.1.1.tgz) = eb34371c49b271abc74b42572883e1b4
7
MD5 (python/Python-2.1.2.tgz) = 4af22bded23a55f907365ed7610de8c9
7
MD5 (python/Python-2.1.2.tgz) = 4af22bded23a55f907365ed7610de8c9
8
MD5 (python/Python-2.2.tgz) = 87febf0780c8e18454022d34b2ca70a0
8
MD5 (python/Python-2.2.tgz) = 87febf0780c8e18454022d34b2ca70a0
9
MD5 (python/Python-2.1.3.tgz) = a8b04cdc822a6fc833ed9b99c7fba589
10
MD5 (python/Python-2.2.1.tgz) = e7012d611602b62e36073c2fd02396a3
(-)x11-toolkits/py-tkinter/distinfo (+2 lines)
Lines 6-8 Link Here
6
MD5 (python/Python-2.1.1.tgz) = eb34371c49b271abc74b42572883e1b4
6
MD5 (python/Python-2.1.1.tgz) = eb34371c49b271abc74b42572883e1b4
7
MD5 (python/Python-2.1.2.tgz) = 4af22bded23a55f907365ed7610de8c9
7
MD5 (python/Python-2.1.2.tgz) = 4af22bded23a55f907365ed7610de8c9
8
MD5 (python/Python-2.2.tgz) = 87febf0780c8e18454022d34b2ca70a0
8
MD5 (python/Python-2.2.tgz) = 87febf0780c8e18454022d34b2ca70a0
9
MD5 (python/Python-2.1.3.tgz) = a8b04cdc822a6fc833ed9b99c7fba589
10
MD5 (python/Python-2.2.1.tgz) = e7012d611602b62e36073c2fd02396a3
(-)lang/python-doc-html/distinfo (+6 lines)
Lines 23-30 Link Here
23
MD5 (python/pdf-letter-2.1.2.tar.bz2) = b13d162be1eb053c151ae1fe6463b570
23
MD5 (python/pdf-letter-2.1.2.tar.bz2) = b13d162be1eb053c151ae1fe6463b570
24
MD5 (python/postscript-a4-2.1.2.tar.bz2) = 36e2fc64401ced77410105a39eb1fad9
24
MD5 (python/postscript-a4-2.1.2.tar.bz2) = 36e2fc64401ced77410105a39eb1fad9
25
MD5 (python/postscript-letter-2.1.2.tar.bz2) = 36f087c31e1c2bc917961f2d2926e4a7
25
MD5 (python/postscript-letter-2.1.2.tar.bz2) = 36f087c31e1c2bc917961f2d2926e4a7
26
MD5 (python/html-2.1.3.tar.bz2) = 0165128306c6826882b553470f3ab8ce
26
MD5 (python/html-2.2.tar.bz2) = 25fce6708cab45b1baf949f061af39f7
27
MD5 (python/html-2.2.tar.bz2) = 25fce6708cab45b1baf949f061af39f7
27
MD5 (python/pdf-a4-2.2.tar.bz2) = b05d4a4e9d2d05e50fed57352605969c
28
MD5 (python/pdf-a4-2.2.tar.bz2) = b05d4a4e9d2d05e50fed57352605969c
28
MD5 (python/pdf-letter-2.2.tar.bz2) = bac127302d5061e3250fd05362f5efc7
29
MD5 (python/pdf-letter-2.2.tar.bz2) = bac127302d5061e3250fd05362f5efc7
29
MD5 (python/postscript-a4-2.2.tar.bz2) = 33cc669abfd2b9c12ed879e97d598932
30
MD5 (python/postscript-a4-2.2.tar.bz2) = 33cc669abfd2b9c12ed879e97d598932
30
MD5 (python/postscript-letter-2.2.tar.bz2) = bfb4e3d960469d362ecfe3ecbcea40d9
31
MD5 (python/postscript-letter-2.2.tar.bz2) = bfb4e3d960469d362ecfe3ecbcea40d9
32
MD5 (python/html-2.2.1.tar.bz2) = 4c04d71113914c7e4619ff7dc732dbbd
33
MD5 (python/pdf-a4-2.2.1.tar.bz2) = 16cb169523b71abb75bf14bf45c6256c
34
MD5 (python/pdf-letter-2.2.1.tar.bz2) = afeaf84ecda1c6eb0069b8f43cdcefa7
35
MD5 (python/postscript-a4-2.2.1.tar.bz2) = 84848cc9e6b9f1fd3d5dc3eeaa8c1b4f
36
MD5 (python/postscript-letter-2.2.1.tar.bz2) = 11ca746d167a07bd77f123ca8ab9b754
(-)lang/python-doc-html/files/plist-html-2.1.3.diff (+597 lines)
Line 0 Link Here
1
--- pkg-plist_html	Wed May  2 21:01:35 2001
2
+++ pkg-plist_html_2.1.3	Thu Apr 11 07:41:22 2002
3
@@ -1,6 +1,7 @@
4
 share/doc/%%PYTHON_VERSION%%/about.html
5
 share/doc/%%PYTHON_VERSION%%/acks.html
6
 share/doc/%%PYTHON_VERSION%%/api/about.html
7
+share/doc/%%PYTHON_VERSION%%/api/abstract-buffer.html
8
 share/doc/%%PYTHON_VERSION%%/api/abstract.html
9
 share/doc/%%PYTHON_VERSION%%/api/api.css
10
 share/doc/%%PYTHON_VERSION%%/api/api.html
11
@@ -15,6 +16,7 @@
12
 share/doc/%%PYTHON_VERSION%%/api/countingRefs.html
13
 share/doc/%%PYTHON_VERSION%%/api/dictObjects.html
14
 share/doc/%%PYTHON_VERSION%%/api/embedding.html
15
+share/doc/%%PYTHON_VERSION%%/api/example-cycle-support.html
16
 share/doc/%%PYTHON_VERSION%%/api/exceptionHandling.html
17
 share/doc/%%PYTHON_VERSION%%/api/exceptions.html
18
 share/doc/%%PYTHON_VERSION%%/api/fileObjects.html
19
@@ -26,6 +28,7 @@
20
 share/doc/%%PYTHON_VERSION%%/api/includes.html
21
 share/doc/%%PYTHON_VERSION%%/api/index.html
22
 share/doc/%%PYTHON_VERSION%%/api/initialization.html
23
+share/doc/%%PYTHON_VERSION%%/api/instanceObjects.html
24
 share/doc/%%PYTHON_VERSION%%/api/intObjects.html
25
 share/doc/%%PYTHON_VERSION%%/api/intro.html
26
 share/doc/%%PYTHON_VERSION%%/api/listObjects.html
27
@@ -40,8 +43,11 @@
28
 share/doc/%%PYTHON_VERSION%%/api/moduleObjects.html
29
 share/doc/%%PYTHON_VERSION%%/api/newTypes.html
30
 share/doc/%%PYTHON_VERSION%%/api/node15.html
31
-share/doc/%%PYTHON_VERSION%%/api/node44.html
32
-share/doc/%%PYTHON_VERSION%%/api/node45.html
33
+share/doc/%%PYTHON_VERSION%%/api/node35.html
34
+share/doc/%%PYTHON_VERSION%%/api/node36.html
35
+share/doc/%%PYTHON_VERSION%%/api/node67.html
36
+share/doc/%%PYTHON_VERSION%%/api/node68.html
37
+share/doc/%%PYTHON_VERSION%%/api/node69.html
38
 share/doc/%%PYTHON_VERSION%%/api/noneObject.html
39
 share/doc/%%PYTHON_VERSION%%/api/number-structs.html
40
 share/doc/%%PYTHON_VERSION%%/api/number.html
41
@@ -59,6 +65,7 @@
42
 share/doc/%%PYTHON_VERSION%%/api/sequenceObjects.html
43
 share/doc/%%PYTHON_VERSION%%/api/standardExceptions.html
44
 share/doc/%%PYTHON_VERSION%%/api/stringObjects.html
45
+share/doc/%%PYTHON_VERSION%%/api/supporting-cycle-detection.html
46
 share/doc/%%PYTHON_VERSION%%/api/threads.html
47
 share/doc/%%PYTHON_VERSION%%/api/tupleObjects.html
48
 share/doc/%%PYTHON_VERSION%%/api/typeObjects.html
49
@@ -68,56 +75,15 @@
50
 share/doc/%%PYTHON_VERSION%%/api/utilities.html
51
 share/doc/%%PYTHON_VERSION%%/api/veryhigh.html
52
 share/doc/%%PYTHON_VERSION%%/dist/about.html
53
-share/doc/%%PYTHON_VERSION%%/dist/bdist-cmds.html
54
-share/doc/%%PYTHON_VERSION%%/dist/build-clib-cmd.html
55
-share/doc/%%PYTHON_VERSION%%/dist/build-cmd.html
56
-share/doc/%%PYTHON_VERSION%%/dist/build-cmds.html
57
-share/doc/%%PYTHON_VERSION%%/dist/build-ext-cmd.html
58
-share/doc/%%PYTHON_VERSION%%/dist/build-py-cmd.html
59
-share/doc/%%PYTHON_VERSION%%/dist/built-dist.html
60
-share/doc/%%PYTHON_VERSION%%/dist/clean-cmd.html
61
-share/doc/%%PYTHON_VERSION%%/dist/concepts.html
62
-share/doc/%%PYTHON_VERSION%%/dist/contents.html
63
-share/doc/%%PYTHON_VERSION%%/dist/creating-dumb.html
64
-share/doc/%%PYTHON_VERSION%%/dist/creating-rpms.html
65
 share/doc/%%PYTHON_VERSION%%/dist/creating-wininst.html
66
-share/doc/%%PYTHON_VERSION%%/dist/describing-extensions.html
67
 share/doc/%%PYTHON_VERSION%%/dist/dist.css
68
 share/doc/%%PYTHON_VERSION%%/dist/dist.html
69
-share/doc/%%PYTHON_VERSION%%/dist/distutils-term.html
70
-share/doc/%%PYTHON_VERSION%%/dist/examples.html
71
-share/doc/%%PYTHON_VERSION%%/dist/extend-existing.html
72
-share/doc/%%PYTHON_VERSION%%/dist/extending.html
73
 share/doc/%%PYTHON_VERSION%%/dist/index.html
74
-share/doc/%%PYTHON_VERSION%%/dist/install-cmd.html
75
-share/doc/%%PYTHON_VERSION%%/dist/install-data-cmd.html
76
-share/doc/%%PYTHON_VERSION%%/dist/install-lib-cmd.html
77
-share/doc/%%PYTHON_VERSION%%/dist/install-scripts-cmd.html
78
 share/doc/%%PYTHON_VERSION%%/dist/intro.html
79
-share/doc/%%PYTHON_VERSION%%/dist/listing-modules.html
80
-share/doc/%%PYTHON_VERSION%%/dist/listing-packages.html
81
-share/doc/%%PYTHON_VERSION%%/dist/manifest-options.html
82
-share/doc/%%PYTHON_VERSION%%/dist/manifest.html
83
-share/doc/%%PYTHON_VERSION%%/dist/multiple-ext.html
84
-share/doc/%%PYTHON_VERSION%%/dist/new-commands.html
85
-share/doc/%%PYTHON_VERSION%%/dist/node11.html
86
-share/doc/%%PYTHON_VERSION%%/dist/node12.html
87
-share/doc/%%PYTHON_VERSION%%/dist/node13.html
88
-share/doc/%%PYTHON_VERSION%%/dist/node14.html
89
-share/doc/%%PYTHON_VERSION%%/dist/node28.html
90
-share/doc/%%PYTHON_VERSION%%/dist/node45.html
91
-share/doc/%%PYTHON_VERSION%%/dist/node46.html
92
-share/doc/%%PYTHON_VERSION%%/dist/node47.html
93
-share/doc/%%PYTHON_VERSION%%/dist/node48.html
94
-share/doc/%%PYTHON_VERSION%%/dist/pure-mod.html
95
-share/doc/%%PYTHON_VERSION%%/dist/pure-pkg.html
96
-share/doc/%%PYTHON_VERSION%%/dist/python-terms.html
97
-share/doc/%%PYTHON_VERSION%%/dist/reference.html
98
 share/doc/%%PYTHON_VERSION%%/dist/sdist-cmd.html
99
 share/doc/%%PYTHON_VERSION%%/dist/setup-config.html
100
 share/doc/%%PYTHON_VERSION%%/dist/setup-script.html
101
 share/doc/%%PYTHON_VERSION%%/dist/simple-example.html
102
-share/doc/%%PYTHON_VERSION%%/dist/single-ext.html
103
 share/doc/%%PYTHON_VERSION%%/dist/source-dist.html
104
 share/doc/%%PYTHON_VERSION%%/doc/about.html
105
 share/doc/%%PYTHON_VERSION%%/doc/classes.html
106
@@ -131,18 +97,20 @@
107
 share/doc/%%PYTHON_VERSION%%/doc/info-units.html
108
 share/doc/%%PYTHON_VERSION%%/doc/latex-primer.html
109
 share/doc/%%PYTHON_VERSION%%/doc/meta-info.html
110
-share/doc/%%PYTHON_VERSION%%/doc/node10.html
111
-share/doc/%%PYTHON_VERSION%%/doc/node11.html
112
 share/doc/%%PYTHON_VERSION%%/doc/node12.html
113
 share/doc/%%PYTHON_VERSION%%/doc/node13.html
114
 share/doc/%%PYTHON_VERSION%%/doc/node14.html
115
-share/doc/%%PYTHON_VERSION%%/doc/node17.html
116
-share/doc/%%PYTHON_VERSION%%/doc/node18.html
117
+share/doc/%%PYTHON_VERSION%%/doc/node15.html
118
+share/doc/%%PYTHON_VERSION%%/doc/node16.html
119
 share/doc/%%PYTHON_VERSION%%/doc/node19.html
120
 share/doc/%%PYTHON_VERSION%%/doc/node2.html
121
 share/doc/%%PYTHON_VERSION%%/doc/node20.html
122
+share/doc/%%PYTHON_VERSION%%/doc/node21.html
123
+share/doc/%%PYTHON_VERSION%%/doc/node22.html
124
 share/doc/%%PYTHON_VERSION%%/doc/node3.html
125
+share/doc/%%PYTHON_VERSION%%/doc/node5.html
126
 share/doc/%%PYTHON_VERSION%%/doc/node6.html
127
+share/doc/%%PYTHON_VERSION%%/doc/node8.html
128
 share/doc/%%PYTHON_VERSION%%/doc/preamble-info.html
129
 share/doc/%%PYTHON_VERSION%%/doc/references.html
130
 share/doc/%%PYTHON_VERSION%%/doc/structured.html
131
@@ -156,7 +124,10 @@
132
 share/doc/%%PYTHON_VERSION%%/ext/contents.html
133
 share/doc/%%PYTHON_VERSION%%/ext/cplusplus.html
134
 share/doc/%%PYTHON_VERSION%%/ext/custom-interps.html
135
+share/doc/%%PYTHON_VERSION%%/ext/defining-new-types.html
136
 share/doc/%%PYTHON_VERSION%%/ext/distributing.html
137
+share/doc/%%PYTHON_VERSION%%/ext/dnt-basics.html
138
+share/doc/%%PYTHON_VERSION%%/ext/dnt-type-methods.html
139
 share/doc/%%PYTHON_VERSION%%/ext/dynamic-linking.html
140
 share/doc/%%PYTHON_VERSION%%/ext/embedding.html
141
 share/doc/%%PYTHON_VERSION%%/ext/embeddingInCplusplus.html
142
@@ -170,6 +141,9 @@
143
 share/doc/%%PYTHON_VERSION%%/ext/methodTable.html
144
 share/doc/%%PYTHON_VERSION%%/ext/module-defn-example.html
145
 share/doc/%%PYTHON_VERSION%%/ext/module-defn-options.html
146
+share/doc/%%PYTHON_VERSION%%/ext/node36.html
147
+share/doc/%%PYTHON_VERSION%%/ext/node37.html
148
+share/doc/%%PYTHON_VERSION%%/ext/node38.html
149
 share/doc/%%PYTHON_VERSION%%/ext/nullPointers.html
150
 share/doc/%%PYTHON_VERSION%%/ext/ownershipRules.html
151
 share/doc/%%PYTHON_VERSION%%/ext/parseTuple.html
152
@@ -185,41 +159,21 @@
153
 share/doc/%%PYTHON_VERSION%%/icons/blank.gif
154
 share/doc/%%PYTHON_VERSION%%/icons/contents.gif
155
 share/doc/%%PYTHON_VERSION%%/icons/index.gif
156
-share/doc/%%PYTHON_VERSION%%/icons/labslogo.gif
157
 share/doc/%%PYTHON_VERSION%%/icons/modules.gif
158
 share/doc/%%PYTHON_VERSION%%/icons/next.gif
159
-share/doc/%%PYTHON_VERSION%%/icons/offsite.gif
160
 share/doc/%%PYTHON_VERSION%%/icons/previous.gif
161
-share/doc/%%PYTHON_VERSION%%/icons/pythonlabs.gif
162
 share/doc/%%PYTHON_VERSION%%/icons/up.gif
163
 share/doc/%%PYTHON_VERSION%%/index.html
164
 share/doc/%%PYTHON_VERSION%%/inst/about.html
165
-share/doc/%%PYTHON_VERSION%%/inst/alt-install-home.html
166
-share/doc/%%PYTHON_VERSION%%/inst/alt-install-macos.html
167
-share/doc/%%PYTHON_VERSION%%/inst/alt-install-prefix.html
168
 share/doc/%%PYTHON_VERSION%%/inst/alt-install-windows.html
169
-share/doc/%%PYTHON_VERSION%%/inst/alt-install.html
170
-share/doc/%%PYTHON_VERSION%%/inst/building-ext.html
171
-share/doc/%%PYTHON_VERSION%%/inst/config-files.html
172
-share/doc/%%PYTHON_VERSION%%/inst/contents.html
173
+share/doc/%%PYTHON_VERSION%%/inst/config-syntax.html
174
 share/doc/%%PYTHON_VERSION%%/inst/custom-install.html
175
-share/doc/%%PYTHON_VERSION%%/inst/how-build-works.html
176
-share/doc/%%PYTHON_VERSION%%/inst/how-install-works.html
177
 share/doc/%%PYTHON_VERSION%%/inst/index.html
178
 share/doc/%%PYTHON_VERSION%%/inst/inst.css
179
 share/doc/%%PYTHON_VERSION%%/inst/inst.html
180
-share/doc/%%PYTHON_VERSION%%/inst/intro.html
181
-share/doc/%%PYTHON_VERSION%%/inst/makefile-pre-in.html
182
-share/doc/%%PYTHON_VERSION%%/inst/manual-install.html
183
-share/doc/%%PYTHON_VERSION%%/inst/new-standard.html
184
 share/doc/%%PYTHON_VERSION%%/inst/non-ms-compilers.html
185
-share/doc/%%PYTHON_VERSION%%/inst/old-way.html
186
-share/doc/%%PYTHON_VERSION%%/inst/platform-variations.html
187
-share/doc/%%PYTHON_VERSION%%/inst/pre-distutils.html
188
-share/doc/%%PYTHON_VERSION%%/inst/splitting-up.html
189
 share/doc/%%PYTHON_VERSION%%/inst/standard-install.html
190
 share/doc/%%PYTHON_VERSION%%/inst/trivial-install.html
191
-share/doc/%%PYTHON_VERSION%%/inst/tweak-flags.html
192
 share/doc/%%PYTHON_VERSION%%/lib/AST_Errors.html
193
 share/doc/%%PYTHON_VERSION%%/lib/AST_Examples.html
194
 share/doc/%%PYTHON_VERSION%%/lib/AST_Objects.html
195
@@ -231,7 +185,6 @@
196
 share/doc/%%PYTHON_VERSION%%/lib/Deterministic_Profiling.html
197
 share/doc/%%PYTHON_VERSION%%/lib/FL_Functions.html
198
 share/doc/%%PYTHON_VERSION%%/lib/Functions_in_cgi_module.html
199
-share/doc/%%PYTHON_VERSION%%/lib/HTTP_Examples.html
200
 share/doc/%%PYTHON_VERSION%%/lib/MimeWriter-objects.html
201
 share/doc/%%PYTHON_VERSION%%/lib/MultiFile-objects.html
202
 share/doc/%%PYTHON_VERSION%%/lib/PrettyPrinter_Objects.html
203
@@ -249,6 +202,8 @@
204
 share/doc/%%PYTHON_VERSION%%/lib/Wave-read-objects.html
205
 share/doc/%%PYTHON_VERSION%%/lib/Wave-write-objects.html
206
 share/doc/%%PYTHON_VERSION%%/lib/about.html
207
+share/doc/%%PYTHON_VERSION%%/lib/abstract-basic-auth-handler.html
208
+share/doc/%%PYTHON_VERSION%%/lib/abstract-digest-auth-handler.html
209
 share/doc/%%PYTHON_VERSION%%/lib/addresslist-objects.html
210
 share/doc/%%PYTHON_VERSION%%/lib/al-config-objects.html
211
 share/doc/%%PYTHON_VERSION%%/lib/al-port-objects.html
212
@@ -260,6 +215,7 @@
213
 share/doc/%%PYTHON_VERSION%%/lib/au-read-objects.html
214
 share/doc/%%PYTHON_VERSION%%/lib/au-write-objects.html
215
 share/doc/%%PYTHON_VERSION%%/lib/audio-device-objects.html
216
+share/doc/%%PYTHON_VERSION%%/lib/base-handler-objects.html
217
 share/doc/%%PYTHON_VERSION%%/lib/binhex-notes.html
218
 share/doc/%%PYTHON_VERSION%%/lib/bisect-example.html
219
 share/doc/%%PYTHON_VERSION%%/lib/bitstring-ops.html
220
@@ -274,6 +230,7 @@
221
 share/doc/%%PYTHON_VERSION%%/lib/built-in-funcs.html
222
 share/doc/%%PYTHON_VERSION%%/lib/builtin.html
223
 share/doc/%%PYTHON_VERSION%%/lib/bytecodes.html
224
+share/doc/%%PYTHON_VERSION%%/lib/cacheftp-handler-objects.html
225
 share/doc/%%PYTHON_VERSION%%/lib/cd-parser-objects.html
226
 share/doc/%%PYTHON_VERSION%%/lib/cgi-intro.html
227
 share/doc/%%PYTHON_VERSION%%/lib/codec-objects.html
228
@@ -287,38 +244,77 @@
229
 share/doc/%%PYTHON_VERSION%%/lib/cookie-objects.html
230
 share/doc/%%PYTHON_VERSION%%/lib/crypto.html
231
 share/doc/%%PYTHON_VERSION%%/lib/curses-functions.html
232
+share/doc/%%PYTHON_VERSION%%/lib/curses-panel-objects.html
233
 share/doc/%%PYTHON_VERSION%%/lib/curses-textpad-objects.html
234
 share/doc/%%PYTHON_VERSION%%/lib/curses-window-objects.html
235
+share/doc/%%PYTHON_VERSION%%/lib/cursespanel-functions.html
236
 share/doc/%%PYTHON_VERSION%%/lib/dbhash-objects.html
237
 share/doc/%%PYTHON_VERSION%%/lib/debugger-commands.html
238
+share/doc/%%PYTHON_VERSION%%/lib/difflib-examples.html
239
 share/doc/%%PYTHON_VERSION%%/lib/dircmp-objects.html
240
 share/doc/%%PYTHON_VERSION%%/lib/dl-objects.html
241
+share/doc/%%PYTHON_VERSION%%/lib/dom-accessor-methods.html
242
+share/doc/%%PYTHON_VERSION%%/lib/dom-attr-objects.html
243
+share/doc/%%PYTHON_VERSION%%/lib/dom-attributelist-objects.html
244
+share/doc/%%PYTHON_VERSION%%/lib/dom-comment-objects.html
245
+share/doc/%%PYTHON_VERSION%%/lib/dom-conformance.html
246
+share/doc/%%PYTHON_VERSION%%/lib/dom-document-objects.html
247
+share/doc/%%PYTHON_VERSION%%/lib/dom-documenttype-objects.html
248
+share/doc/%%PYTHON_VERSION%%/lib/dom-element-objects.html
249
+share/doc/%%PYTHON_VERSION%%/lib/dom-example.html
250
+share/doc/%%PYTHON_VERSION%%/lib/dom-exceptions.html
251
+share/doc/%%PYTHON_VERSION%%/lib/dom-implementation-objects.html
252
+share/doc/%%PYTHON_VERSION%%/lib/dom-node-objects.html
253
+share/doc/%%PYTHON_VERSION%%/lib/dom-nodelist-objects.html
254
+share/doc/%%PYTHON_VERSION%%/lib/dom-objects.html
255
+share/doc/%%PYTHON_VERSION%%/lib/dom-pi-objects.html
256
+share/doc/%%PYTHON_VERSION%%/lib/dom-text-objects.html
257
+share/doc/%%PYTHON_VERSION%%/lib/dom-type-mapping.html
258
+share/doc/%%PYTHON_VERSION%%/lib/domeventstream-objects.html
259
 share/doc/%%PYTHON_VERSION%%/lib/dtd-handler-objects.html
260
 share/doc/%%PYTHON_VERSION%%/lib/embedding-locale.html
261
 share/doc/%%PYTHON_VERSION%%/lib/entity-resolver-objects.html
262
 share/doc/%%PYTHON_VERSION%%/lib/event-objects.html
263
 share/doc/%%PYTHON_VERSION%%/lib/examples-imp.html
264
+share/doc/%%PYTHON_VERSION%%/lib/expat-content-models.html
265
 share/doc/%%PYTHON_VERSION%%/lib/expat-errors.html
266
 share/doc/%%PYTHON_VERSION%%/lib/expat-example.html
267
+share/doc/%%PYTHON_VERSION%%/lib/expaterror-objects.html
268
+share/doc/%%PYTHON_VERSION%%/lib/file-handler-objects.html
269
 share/doc/%%PYTHON_VERSION%%/lib/form-objects.html
270
 share/doc/%%PYTHON_VERSION%%/lib/formatter-impls.html
271
 share/doc/%%PYTHON_VERSION%%/lib/formatter-interface.html
272
 share/doc/%%PYTHON_VERSION%%/lib/forms-objects.html
273
+share/doc/%%PYTHON_VERSION%%/lib/fpectl-example.html
274
 share/doc/%%PYTHON_VERSION%%/lib/front.html
275
+share/doc/%%PYTHON_VERSION%%/lib/ftp-handler-objects.html
276
 share/doc/%%PYTHON_VERSION%%/lib/ftp-objects.html
277
 share/doc/%%PYTHON_VERSION%%/lib/genindex.html
278
+share/doc/%%PYTHON_VERSION%%/lib/gopher-handler.html
279
 share/doc/%%PYTHON_VERSION%%/lib/handle-object.html
280
 share/doc/%%PYTHON_VERSION%%/lib/html-parser-objects.html
281
+share/doc/%%PYTHON_VERSION%%/lib/http-basic-auth-handler.html
282
+share/doc/%%PYTHON_VERSION%%/lib/http-digest-auth-handler.html
283
+share/doc/%%PYTHON_VERSION%%/lib/http-handler-objects.html
284
+share/doc/%%PYTHON_VERSION%%/lib/http-password-mgr.html
285
+share/doc/%%PYTHON_VERSION%%/lib/http-redirect-handler.html
286
+share/doc/%%PYTHON_VERSION%%/lib/httplib-examples.html
287
+share/doc/%%PYTHON_VERSION%%/lib/https-handler-objects.html
288
 share/doc/%%PYTHON_VERSION%%/lib/imap4-example.html
289
 share/doc/%%PYTHON_VERSION%%/lib/imap4-objects.html
290
 share/doc/%%PYTHON_VERSION%%/lib/img1.gif
291
 share/doc/%%PYTHON_VERSION%%/lib/incremental-parser-objects.html
292
 share/doc/%%PYTHON_VERSION%%/lib/index.html
293
 share/doc/%%PYTHON_VERSION%%/lib/input-source-objects.html
294
+share/doc/%%PYTHON_VERSION%%/lib/inspect-classes-functions.html
295
+share/doc/%%PYTHON_VERSION%%/lib/inspect-source.html
296
+share/doc/%%PYTHON_VERSION%%/lib/inspect-stack.html
297
+share/doc/%%PYTHON_VERSION%%/lib/inspect-types.html
298
 share/doc/%%PYTHON_VERSION%%/lib/internet.html
299
 share/doc/%%PYTHON_VERSION%%/lib/interpreter-objects.html
300
 share/doc/%%PYTHON_VERSION%%/lib/intro.html
301
 share/doc/%%PYTHON_VERSION%%/lib/language.html
302
+share/doc/%%PYTHON_VERSION%%/lib/legacy-unit-tests.html
303
 share/doc/%%PYTHON_VERSION%%/lib/lib.css
304
 share/doc/%%PYTHON_VERSION%%/lib/lib.html
305
 share/doc/%%PYTHON_VERSION%%/lib/locator-objects.html
306
@@ -332,6 +328,7 @@
307
 share/doc/%%PYTHON_VERSION%%/lib/mh-message-objects.html
308
 share/doc/%%PYTHON_VERSION%%/lib/mh-objects.html
309
 share/doc/%%PYTHON_VERSION%%/lib/mimetools-message-objects.html
310
+share/doc/%%PYTHON_VERSION%%/lib/minidom-and-dom.html
311
 share/doc/%%PYTHON_VERSION%%/lib/misc.html
312
 share/doc/%%PYTHON_VERSION%%/lib/mmedia.html
313
 share/doc/%%PYTHON_VERSION%%/lib/modindex.html
314
@@ -384,13 +381,16 @@
315
 share/doc/%%PYTHON_VERSION%%/lib/module-crypt.html
316
 share/doc/%%PYTHON_VERSION%%/lib/module-curses.ascii.html
317
 share/doc/%%PYTHON_VERSION%%/lib/module-curses.html
318
+share/doc/%%PYTHON_VERSION%%/lib/module-curses.panel.html
319
 share/doc/%%PYTHON_VERSION%%/lib/module-curses.textpad.html
320
 share/doc/%%PYTHON_VERSION%%/lib/module-curses.wrapper.html
321
 share/doc/%%PYTHON_VERSION%%/lib/module-dbhash.html
322
 share/doc/%%PYTHON_VERSION%%/lib/module-dbm.html
323
+share/doc/%%PYTHON_VERSION%%/lib/module-difflib.html
324
 share/doc/%%PYTHON_VERSION%%/lib/module-dircache.html
325
 share/doc/%%PYTHON_VERSION%%/lib/module-dis.html
326
 share/doc/%%PYTHON_VERSION%%/lib/module-dl.html
327
+share/doc/%%PYTHON_VERSION%%/lib/module-doctest.html
328
 share/doc/%%PYTHON_VERSION%%/lib/module-dumbdbm.html
329
 share/doc/%%PYTHON_VERSION%%/lib/module-errno.html
330
 share/doc/%%PYTHON_VERSION%%/lib/module-exceptions.html
331
@@ -403,6 +403,7 @@
332
 share/doc/%%PYTHON_VERSION%%/lib/module-fm.html
333
 share/doc/%%PYTHON_VERSION%%/lib/module-fnmatch.html
334
 share/doc/%%PYTHON_VERSION%%/lib/module-formatter.html
335
+share/doc/%%PYTHON_VERSION%%/lib/module-fpectl.html
336
 share/doc/%%PYTHON_VERSION%%/lib/module-fpformat.html
337
 share/doc/%%PYTHON_VERSION%%/lib/module-ftplib.html
338
 share/doc/%%PYTHON_VERSION%%/lib/module-gc.html
339
@@ -424,6 +425,7 @@
340
 share/doc/%%PYTHON_VERSION%%/lib/module-imgfile.html
341
 share/doc/%%PYTHON_VERSION%%/lib/module-imghdr.html
342
 share/doc/%%PYTHON_VERSION%%/lib/module-imp.html
343
+share/doc/%%PYTHON_VERSION%%/lib/module-inspect.html
344
 share/doc/%%PYTHON_VERSION%%/lib/module-jpeg.html
345
 share/doc/%%PYTHON_VERSION%%/lib/module-keyword.html
346
 share/doc/%%PYTHON_VERSION%%/lib/module-linecache.html
347
@@ -512,22 +514,30 @@
348
 share/doc/%%PYTHON_VERSION%%/lib/module-tty.html
349
 share/doc/%%PYTHON_VERSION%%/lib/module-types.html
350
 share/doc/%%PYTHON_VERSION%%/lib/module-unicodedata.html
351
+share/doc/%%PYTHON_VERSION%%/lib/module-unittest.html
352
 share/doc/%%PYTHON_VERSION%%/lib/module-urllib.html
353
+share/doc/%%PYTHON_VERSION%%/lib/module-urllib2.html
354
 share/doc/%%PYTHON_VERSION%%/lib/module-urlparse.html
355
 share/doc/%%PYTHON_VERSION%%/lib/module-user.html
356
 share/doc/%%PYTHON_VERSION%%/lib/module-uu.html
357
+share/doc/%%PYTHON_VERSION%%/lib/module-warnings.html
358
 share/doc/%%PYTHON_VERSION%%/lib/module-wave.html
359
+share/doc/%%PYTHON_VERSION%%/lib/module-weakref.html
360
 share/doc/%%PYTHON_VERSION%%/lib/module-webbrowser.html
361
 share/doc/%%PYTHON_VERSION%%/lib/module-whichdb.html
362
 share/doc/%%PYTHON_VERSION%%/lib/module-whrandom.html
363
 share/doc/%%PYTHON_VERSION%%/lib/module-winsound.html
364
 share/doc/%%PYTHON_VERSION%%/lib/module-xdrlib.html
365
+share/doc/%%PYTHON_VERSION%%/lib/module-xml.dom.html
366
+share/doc/%%PYTHON_VERSION%%/lib/module-xml.dom.minidom.html
367
+share/doc/%%PYTHON_VERSION%%/lib/module-xml.dom.pulldom.html
368
 share/doc/%%PYTHON_VERSION%%/lib/module-xml.parsers.expat.html
369
 share/doc/%%PYTHON_VERSION%%/lib/module-xml.sax.handler.html
370
 share/doc/%%PYTHON_VERSION%%/lib/module-xml.sax.html
371
 share/doc/%%PYTHON_VERSION%%/lib/module-xml.sax.saxutils.html
372
 share/doc/%%PYTHON_VERSION%%/lib/module-xml.sax.xmlreader.html
373
 share/doc/%%PYTHON_VERSION%%/lib/module-xmllib.html
374
+share/doc/%%PYTHON_VERSION%%/lib/module-xreadlines.html
375
 share/doc/%%PYTHON_VERSION%%/lib/module-zipfile.html
376
 share/doc/%%PYTHON_VERSION%%/lib/module-zlib.html
377
 share/doc/%%PYTHON_VERSION%%/lib/morsel-objects.html
378
@@ -539,41 +549,55 @@
379
 share/doc/%%PYTHON_VERSION%%/lib/netdata.html
380
 share/doc/%%PYTHON_VERSION%%/lib/netrc-objects.html
381
 share/doc/%%PYTHON_VERSION%%/lib/nntp-objects.html
382
-share/doc/%%PYTHON_VERSION%%/lib/node128.html
383
-share/doc/%%PYTHON_VERSION%%/lib/node141.html
384
-share/doc/%%PYTHON_VERSION%%/lib/node144.html
385
-share/doc/%%PYTHON_VERSION%%/lib/node145.html
386
-share/doc/%%PYTHON_VERSION%%/lib/node146.html
387
-share/doc/%%PYTHON_VERSION%%/lib/node147.html
388
-share/doc/%%PYTHON_VERSION%%/lib/node148.html
389
-share/doc/%%PYTHON_VERSION%%/lib/node149.html
390
-share/doc/%%PYTHON_VERSION%%/lib/node150.html
391
-share/doc/%%PYTHON_VERSION%%/lib/node151.html
392
-share/doc/%%PYTHON_VERSION%%/lib/node152.html
393
-share/doc/%%PYTHON_VERSION%%/lib/node153.html
394
-share/doc/%%PYTHON_VERSION%%/lib/node154.html
395
-share/doc/%%PYTHON_VERSION%%/lib/node155.html
396
-share/doc/%%PYTHON_VERSION%%/lib/node215.html
397
-share/doc/%%PYTHON_VERSION%%/lib/node216.html
398
-share/doc/%%PYTHON_VERSION%%/lib/node222.html
399
-share/doc/%%PYTHON_VERSION%%/lib/node241.html
400
-share/doc/%%PYTHON_VERSION%%/lib/node243.html
401
-share/doc/%%PYTHON_VERSION%%/lib/node244.html
402
-share/doc/%%PYTHON_VERSION%%/lib/node245.html
403
-share/doc/%%PYTHON_VERSION%%/lib/node246.html
404
-share/doc/%%PYTHON_VERSION%%/lib/node247.html
405
-share/doc/%%PYTHON_VERSION%%/lib/node252.html
406
-share/doc/%%PYTHON_VERSION%%/lib/node366.html
407
-share/doc/%%PYTHON_VERSION%%/lib/node376.html
408
-share/doc/%%PYTHON_VERSION%%/lib/node377.html
409
-share/doc/%%PYTHON_VERSION%%/lib/node413.html
410
-share/doc/%%PYTHON_VERSION%%/lib/node422.html
411
-share/doc/%%PYTHON_VERSION%%/lib/node423.html
412
-share/doc/%%PYTHON_VERSION%%/lib/node424.html
413
-share/doc/%%PYTHON_VERSION%%/lib/node425.html
414
-share/doc/%%PYTHON_VERSION%%/lib/node427.html
415
-share/doc/%%PYTHON_VERSION%%/lib/node80.html
416
+share/doc/%%PYTHON_VERSION%%/lib/node100.html
417
+share/doc/%%PYTHON_VERSION%%/lib/node109.html
418
+share/doc/%%PYTHON_VERSION%%/lib/node110.html
419
+share/doc/%%PYTHON_VERSION%%/lib/node111.html
420
+share/doc/%%PYTHON_VERSION%%/lib/node112.html
421
+share/doc/%%PYTHON_VERSION%%/lib/node113.html
422
+share/doc/%%PYTHON_VERSION%%/lib/node114.html
423
+share/doc/%%PYTHON_VERSION%%/lib/node115.html
424
+share/doc/%%PYTHON_VERSION%%/lib/node116.html
425
+share/doc/%%PYTHON_VERSION%%/lib/node167.html
426
+share/doc/%%PYTHON_VERSION%%/lib/node183.html
427
+share/doc/%%PYTHON_VERSION%%/lib/node186.html
428
+share/doc/%%PYTHON_VERSION%%/lib/node187.html
429
+share/doc/%%PYTHON_VERSION%%/lib/node188.html
430
+share/doc/%%PYTHON_VERSION%%/lib/node189.html
431
+share/doc/%%PYTHON_VERSION%%/lib/node190.html
432
+share/doc/%%PYTHON_VERSION%%/lib/node191.html
433
+share/doc/%%PYTHON_VERSION%%/lib/node192.html
434
+share/doc/%%PYTHON_VERSION%%/lib/node193.html
435
+share/doc/%%PYTHON_VERSION%%/lib/node194.html
436
+share/doc/%%PYTHON_VERSION%%/lib/node195.html
437
+share/doc/%%PYTHON_VERSION%%/lib/node196.html
438
+share/doc/%%PYTHON_VERSION%%/lib/node197.html
439
+share/doc/%%PYTHON_VERSION%%/lib/node255.html
440
+share/doc/%%PYTHON_VERSION%%/lib/node256.html
441
+share/doc/%%PYTHON_VERSION%%/lib/node262.html
442
+share/doc/%%PYTHON_VERSION%%/lib/node281.html
443
+share/doc/%%PYTHON_VERSION%%/lib/node283.html
444
+share/doc/%%PYTHON_VERSION%%/lib/node284.html
445
+share/doc/%%PYTHON_VERSION%%/lib/node285.html
446
+share/doc/%%PYTHON_VERSION%%/lib/node286.html
447
+share/doc/%%PYTHON_VERSION%%/lib/node287.html
448
+share/doc/%%PYTHON_VERSION%%/lib/node312.html
449
+share/doc/%%PYTHON_VERSION%%/lib/node392.html
450
+share/doc/%%PYTHON_VERSION%%/lib/node393.html
451
+share/doc/%%PYTHON_VERSION%%/lib/node40.html
452
+share/doc/%%PYTHON_VERSION%%/lib/node456.html
453
+share/doc/%%PYTHON_VERSION%%/lib/node466.html
454
+share/doc/%%PYTHON_VERSION%%/lib/node467.html
455
+share/doc/%%PYTHON_VERSION%%/lib/node503.html
456
+share/doc/%%PYTHON_VERSION%%/lib/node512.html
457
+share/doc/%%PYTHON_VERSION%%/lib/node513.html
458
+share/doc/%%PYTHON_VERSION%%/lib/node514.html
459
+share/doc/%%PYTHON_VERSION%%/lib/node515.html
460
+share/doc/%%PYTHON_VERSION%%/lib/node517.html
461
 share/doc/%%PYTHON_VERSION%%/lib/obsolete-modules.html
462
+share/doc/%%PYTHON_VERSION%%/lib/opener-director-objects.html
463
+share/doc/%%PYTHON_VERSION%%/lib/operator-map.html
464
+share/doc/%%PYTHON_VERSION%%/lib/organizing-tests.html
465
 share/doc/%%PYTHON_VERSION%%/lib/os-fd-ops.html
466
 share/doc/%%PYTHON_VERSION%%/lib/os-file-dir.html
467
 share/doc/%%PYTHON_VERSION%%/lib/os-newstreams.html
468
@@ -595,6 +619,9 @@
469
 share/doc/%%PYTHON_VERSION%%/lib/profile-old.html
470
 share/doc/%%PYTHON_VERSION%%/lib/profile-stats.html
471
 share/doc/%%PYTHON_VERSION%%/lib/profile.html
472
+share/doc/%%PYTHON_VERSION%%/lib/proxy-basic-auth-handler.html
473
+share/doc/%%PYTHON_VERSION%%/lib/proxy-digest-auth-handler.html
474
+share/doc/%%PYTHON_VERSION%%/lib/proxy-handler.html
475
 share/doc/%%PYTHON_VERSION%%/lib/pyclbr-class-objects.html
476
 share/doc/%%PYTHON_VERSION%%/lib/python.html
477
 share/doc/%%PYTHON_VERSION%%/lib/pyzipfile-objects.html
478
@@ -602,12 +629,16 @@
479
 share/doc/%%PYTHON_VERSION%%/lib/re-syntax.html
480
 share/doc/%%PYTHON_VERSION%%/lib/readline-example.html
481
 share/doc/%%PYTHON_VERSION%%/lib/reporting-bugs.html
482
+share/doc/%%PYTHON_VERSION%%/lib/request-objects.html
483
 share/doc/%%PYTHON_VERSION%%/lib/restricted.html
484
+share/doc/%%PYTHON_VERSION%%/lib/rexec-extension.html
485
+share/doc/%%PYTHON_VERSION%%/lib/rexec-objects.html
486
 share/doc/%%PYTHON_VERSION%%/lib/rlock-objects.html
487
-share/doc/%%PYTHON_VERSION%%/lib/rng-objects.html
488
+share/doc/%%PYTHON_VERSION%%/lib/sax-error-handler.html
489
 share/doc/%%PYTHON_VERSION%%/lib/sax-exception-objects.html
490
 share/doc/%%PYTHON_VERSION%%/lib/scheduler-objects.html
491
 share/doc/%%PYTHON_VERSION%%/lib/semaphore-objects.html
492
+share/doc/%%PYTHON_VERSION%%/lib/sequence-matcher.html
493
 share/doc/%%PYTHON_VERSION%%/lib/sgi.html
494
 share/doc/%%PYTHON_VERSION%%/lib/shlex-objects.html
495
 share/doc/%%PYTHON_VERSION%%/lib/shutil-example.html
496
@@ -627,6 +658,10 @@
497
 share/doc/%%PYTHON_VERSION%%/lib/telnet-objects.html
498
 share/doc/%%PYTHON_VERSION%%/lib/template-objects.html
499
 share/doc/%%PYTHON_VERSION%%/lib/termios_Example.html
500
+share/doc/%%PYTHON_VERSION%%/lib/testcase-objects.html
501
+share/doc/%%PYTHON_VERSION%%/lib/testloader-objects.html
502
+share/doc/%%PYTHON_VERSION%%/lib/testresult-objects.html
503
+share/doc/%%PYTHON_VERSION%%/lib/testsuite-objects.html
504
 share/doc/%%PYTHON_VERSION%%/lib/thread-objects.html
505
 share/doc/%%PYTHON_VERSION%%/lib/traceback-example.html
506
 share/doc/%%PYTHON_VERSION%%/lib/truth.html
507
@@ -644,14 +679,23 @@
508
 share/doc/%%PYTHON_VERSION%%/lib/typesseq-xrange.html
509
 share/doc/%%PYTHON_VERSION%%/lib/typesseq.html
510
 share/doc/%%PYTHON_VERSION%%/lib/undoc.html
511
+share/doc/%%PYTHON_VERSION%%/lib/unittest-contents.html
512
 share/doc/%%PYTHON_VERSION%%/lib/unix.html
513
+share/doc/%%PYTHON_VERSION%%/lib/unknown-handler-objects.html
514
 share/doc/%%PYTHON_VERSION%%/lib/urlopener-objs.html
515
+share/doc/%%PYTHON_VERSION%%/lib/warning-categories.html
516
+share/doc/%%PYTHON_VERSION%%/lib/warning-filter.html
517
+share/doc/%%PYTHON_VERSION%%/lib/warning-functions.html
518
+share/doc/%%PYTHON_VERSION%%/lib/weakref-example.html
519
+share/doc/%%PYTHON_VERSION%%/lib/weakref-extension.html
520
+share/doc/%%PYTHON_VERSION%%/lib/weakref-objects.html
521
 share/doc/%%PYTHON_VERSION%%/lib/writer-impls.html
522
 share/doc/%%PYTHON_VERSION%%/lib/writer-interface.html
523
 share/doc/%%PYTHON_VERSION%%/lib/xdr-exceptions.html
524
 share/doc/%%PYTHON_VERSION%%/lib/xdr-packer-objects.html
525
 share/doc/%%PYTHON_VERSION%%/lib/xdr-unpacker-objects.html
526
 share/doc/%%PYTHON_VERSION%%/lib/xml-namespace.html
527
+share/doc/%%PYTHON_VERSION%%/lib/xmlparser-objects.html
528
 share/doc/%%PYTHON_VERSION%%/lib/xmlreader-objects.html
529
 share/doc/%%PYTHON_VERSION%%/lib/zipfile-objects.html
530
 share/doc/%%PYTHON_VERSION%%/lib/zipinfo-objects.html
531
@@ -686,6 +730,7 @@
532
 share/doc/%%PYTHON_VERSION%%/mac/modindex.html
533
 share/doc/%%PYTHON_VERSION%%/mac/module-AE.html
534
 share/doc/%%PYTHON_VERSION%%/mac/module-Cm.html
535
+share/doc/%%PYTHON_VERSION%%/mac/module-ColorPicker.html
536
 share/doc/%%PYTHON_VERSION%%/mac/module-Ctl.html
537
 share/doc/%%PYTHON_VERSION%%/mac/module-Dlg.html
538
 share/doc/%%PYTHON_VERSION%%/mac/module-EasyDialogs.html
539
@@ -740,6 +785,9 @@
540
 share/doc/%%PYTHON_VERSION%%/mac/node43.html
541
 share/doc/%%PYTHON_VERSION%%/mac/node6.html
542
 share/doc/%%PYTHON_VERSION%%/mac/node7.html
543
+share/doc/%%PYTHON_VERSION%%/mac/node90.html
544
+share/doc/%%PYTHON_VERSION%%/mac/node91.html
545
+share/doc/%%PYTHON_VERSION%%/mac/node92.html
546
 share/doc/%%PYTHON_VERSION%%/mac/scripting-with-BBedit.html
547
 share/doc/%%PYTHON_VERSION%%/mac/scrolledwindow-object.html
548
 share/doc/%%PYTHON_VERSION%%/mac/search-path.html
549
@@ -774,9 +822,11 @@
550
 share/doc/%%PYTHON_VERSION%%/ref/conversions.html
551
 share/doc/%%PYTHON_VERSION%%/ref/customization.html
552
 share/doc/%%PYTHON_VERSION%%/ref/datamodel.html
553
+share/doc/%%PYTHON_VERSION%%/ref/defintions.html
554
 share/doc/%%PYTHON_VERSION%%/ref/del.html
555
 share/doc/%%PYTHON_VERSION%%/ref/delimiters.html
556
 share/doc/%%PYTHON_VERSION%%/ref/dict.html
557
+share/doc/%%PYTHON_VERSION%%/ref/dynamic-features.html
558
 share/doc/%%PYTHON_VERSION%%/ref/exceptions.html
559
 share/doc/%%PYTHON_VERSION%%/ref/exec.html
560
 share/doc/%%PYTHON_VERSION%%/ref/execframes.html
561
@@ -791,6 +841,8 @@
562
 share/doc/%%PYTHON_VERSION%%/ref/for.html
563
 share/doc/%%PYTHON_VERSION%%/ref/front.html
564
 share/doc/%%PYTHON_VERSION%%/ref/function.html
565
+share/doc/%%PYTHON_VERSION%%/ref/future-statements.html
566
+share/doc/%%PYTHON_VERSION%%/ref/futures.html
567
 share/doc/%%PYTHON_VERSION%%/ref/genindex.html
568
 share/doc/%%PYTHON_VERSION%%/ref/global.html
569
 share/doc/%%PYTHON_VERSION%%/ref/id-classes.html
570
@@ -811,6 +863,11 @@
571
 share/doc/%%PYTHON_VERSION%%/ref/lists.html
572
 share/doc/%%PYTHON_VERSION%%/ref/literals.html
573
 share/doc/%%PYTHON_VERSION%%/ref/logical.html
574
+share/doc/%%PYTHON_VERSION%%/ref/module-future.html
575
+share/doc/%%PYTHON_VERSION%%/ref/nested-scopes.html
576
+share/doc/%%PYTHON_VERSION%%/ref/node100.html
577
+share/doc/%%PYTHON_VERSION%%/ref/node98.html
578
+share/doc/%%PYTHON_VERSION%%/ref/node99.html
579
 share/doc/%%PYTHON_VERSION%%/ref/notation.html
580
 share/doc/%%PYTHON_VERSION%%/ref/numbers.html
581
 share/doc/%%PYTHON_VERSION%%/ref/numeric-types.html
582
@@ -843,6 +900,7 @@
583
 share/doc/%%PYTHON_VERSION%%/ref/try.html
584
 share/doc/%%PYTHON_VERSION%%/ref/types.html
585
 share/doc/%%PYTHON_VERSION%%/ref/unary.html
586
+share/doc/%%PYTHON_VERSION%%/ref/unicode.html
587
 share/doc/%%PYTHON_VERSION%%/ref/while.html
588
 share/doc/%%PYTHON_VERSION%%/ref/whitespace.html
589
 share/doc/%%PYTHON_VERSION%%/tut/about.html
590
@@ -853,6 +911,7 @@
591
 share/doc/%%PYTHON_VERSION%%/tut/node12.html
592
 share/doc/%%PYTHON_VERSION%%/tut/node13.html
593
 share/doc/%%PYTHON_VERSION%%/tut/node14.html
594
+share/doc/%%PYTHON_VERSION%%/tut/node15.html
595
 share/doc/%%PYTHON_VERSION%%/tut/node2.html
596
 share/doc/%%PYTHON_VERSION%%/tut/node3.html
597
 share/doc/%%PYTHON_VERSION%%/tut/node4.html
(-)lang/python-doc-html/files/plist-html-2.2.1.diff (+1009 lines)
Line 0 Link Here
1
--- pkg-plist_html	Wed May  2 21:01:35 2001
2
+++ pkg-plist_html_2.2.1	Thu Apr 11 07:45:36 2002
3
@@ -1,20 +1,27 @@
4
 share/doc/%%PYTHON_VERSION%%/about.html
5
 share/doc/%%PYTHON_VERSION%%/acks.html
6
 share/doc/%%PYTHON_VERSION%%/api/about.html
7
+share/doc/%%PYTHON_VERSION%%/api/abstract-buffer.html
8
 share/doc/%%PYTHON_VERSION%%/api/abstract.html
9
+share/doc/%%PYTHON_VERSION%%/api/advanced-debugging.html
10
+share/doc/%%PYTHON_VERSION%%/api/allocating-objects.html
11
 share/doc/%%PYTHON_VERSION%%/api/api.css
12
 share/doc/%%PYTHON_VERSION%%/api/api.html
13
+share/doc/%%PYTHON_VERSION%%/api/arg-parsing.html
14
 share/doc/%%PYTHON_VERSION%%/api/buffer-structs.html
15
 share/doc/%%PYTHON_VERSION%%/api/bufferObjects.html
16
 share/doc/%%PYTHON_VERSION%%/api/builtinCodecs.html
17
 share/doc/%%PYTHON_VERSION%%/api/cObjects.html
18
+share/doc/%%PYTHON_VERSION%%/api/cell-objects.html
19
 share/doc/%%PYTHON_VERSION%%/api/common-structs.html
20
 share/doc/%%PYTHON_VERSION%%/api/complexObjects.html
21
 share/doc/%%PYTHON_VERSION%%/api/concrete.html
22
 share/doc/%%PYTHON_VERSION%%/api/contents.html
23
 share/doc/%%PYTHON_VERSION%%/api/countingRefs.html
24
+share/doc/%%PYTHON_VERSION%%/api/descriptor-objects.html
25
 share/doc/%%PYTHON_VERSION%%/api/dictObjects.html
26
 share/doc/%%PYTHON_VERSION%%/api/embedding.html
27
+share/doc/%%PYTHON_VERSION%%/api/example-cycle-support.html
28
 share/doc/%%PYTHON_VERSION%%/api/exceptionHandling.html
29
 share/doc/%%PYTHON_VERSION%%/api/exceptions.html
30
 share/doc/%%PYTHON_VERSION%%/api/fileObjects.html
31
@@ -26,22 +33,30 @@
32
 share/doc/%%PYTHON_VERSION%%/api/includes.html
33
 share/doc/%%PYTHON_VERSION%%/api/index.html
34
 share/doc/%%PYTHON_VERSION%%/api/initialization.html
35
+share/doc/%%PYTHON_VERSION%%/api/instanceObjects.html
36
 share/doc/%%PYTHON_VERSION%%/api/intObjects.html
37
 share/doc/%%PYTHON_VERSION%%/api/intro.html
38
+share/doc/%%PYTHON_VERSION%%/api/iterator-objects.html
39
+share/doc/%%PYTHON_VERSION%%/api/iterator.html
40
 share/doc/%%PYTHON_VERSION%%/api/listObjects.html
41
 share/doc/%%PYTHON_VERSION%%/api/longObjects.html
42
 share/doc/%%PYTHON_VERSION%%/api/mapObjects.html
43
 share/doc/%%PYTHON_VERSION%%/api/mapping-structs.html
44
 share/doc/%%PYTHON_VERSION%%/api/mapping.html
45
+share/doc/%%PYTHON_VERSION%%/api/marshalling-utils.html
46
 share/doc/%%PYTHON_VERSION%%/api/memory.html
47
 share/doc/%%PYTHON_VERSION%%/api/memoryExamples.html
48
 share/doc/%%PYTHON_VERSION%%/api/memoryInterface.html
49
 share/doc/%%PYTHON_VERSION%%/api/memoryOverview.html
50
+share/doc/%%PYTHON_VERSION%%/api/method-objects.html
51
 share/doc/%%PYTHON_VERSION%%/api/moduleObjects.html
52
 share/doc/%%PYTHON_VERSION%%/api/newTypes.html
53
 share/doc/%%PYTHON_VERSION%%/api/node15.html
54
-share/doc/%%PYTHON_VERSION%%/api/node44.html
55
-share/doc/%%PYTHON_VERSION%%/api/node45.html
56
+share/doc/%%PYTHON_VERSION%%/api/node38.html
57
+share/doc/%%PYTHON_VERSION%%/api/node39.html
58
+share/doc/%%PYTHON_VERSION%%/api/node80.html
59
+share/doc/%%PYTHON_VERSION%%/api/node81.html
60
+share/doc/%%PYTHON_VERSION%%/api/node82.html
61
 share/doc/%%PYTHON_VERSION%%/api/noneObject.html
62
 share/doc/%%PYTHON_VERSION%%/api/number-structs.html
63
 share/doc/%%PYTHON_VERSION%%/api/number.html
64
@@ -51,14 +66,18 @@
65
 share/doc/%%PYTHON_VERSION%%/api/os.html
66
 share/doc/%%PYTHON_VERSION%%/api/otherObjects.html
67
 share/doc/%%PYTHON_VERSION%%/api/processControl.html
68
+share/doc/%%PYTHON_VERSION%%/api/profiling.html
69
 share/doc/%%PYTHON_VERSION%%/api/refcountDetails.html
70
 share/doc/%%PYTHON_VERSION%%/api/refcounts.html
71
 share/doc/%%PYTHON_VERSION%%/api/reporting-bugs.html
72
 share/doc/%%PYTHON_VERSION%%/api/sequence-structs.html
73
 share/doc/%%PYTHON_VERSION%%/api/sequence.html
74
 share/doc/%%PYTHON_VERSION%%/api/sequenceObjects.html
75
+share/doc/%%PYTHON_VERSION%%/api/slice-objects.html
76
 share/doc/%%PYTHON_VERSION%%/api/standardExceptions.html
77
 share/doc/%%PYTHON_VERSION%%/api/stringObjects.html
78
+share/doc/%%PYTHON_VERSION%%/api/supporting-cycle-detection.html
79
+share/doc/%%PYTHON_VERSION%%/api/supporting-iteration.html
80
 share/doc/%%PYTHON_VERSION%%/api/threads.html
81
 share/doc/%%PYTHON_VERSION%%/api/tupleObjects.html
82
 share/doc/%%PYTHON_VERSION%%/api/typeObjects.html
83
@@ -67,116 +86,96 @@
84
 share/doc/%%PYTHON_VERSION%%/api/unicodeObjects.html
85
 share/doc/%%PYTHON_VERSION%%/api/utilities.html
86
 share/doc/%%PYTHON_VERSION%%/api/veryhigh.html
87
+share/doc/%%PYTHON_VERSION%%/api/weakref-objects.html
88
 share/doc/%%PYTHON_VERSION%%/dist/about.html
89
-share/doc/%%PYTHON_VERSION%%/dist/bdist-cmds.html
90
-share/doc/%%PYTHON_VERSION%%/dist/build-clib-cmd.html
91
-share/doc/%%PYTHON_VERSION%%/dist/build-cmd.html
92
-share/doc/%%PYTHON_VERSION%%/dist/build-cmds.html
93
-share/doc/%%PYTHON_VERSION%%/dist/build-ext-cmd.html
94
-share/doc/%%PYTHON_VERSION%%/dist/build-py-cmd.html
95
-share/doc/%%PYTHON_VERSION%%/dist/built-dist.html
96
-share/doc/%%PYTHON_VERSION%%/dist/clean-cmd.html
97
-share/doc/%%PYTHON_VERSION%%/dist/concepts.html
98
-share/doc/%%PYTHON_VERSION%%/dist/contents.html
99
-share/doc/%%PYTHON_VERSION%%/dist/creating-dumb.html
100
-share/doc/%%PYTHON_VERSION%%/dist/creating-rpms.html
101
 share/doc/%%PYTHON_VERSION%%/dist/creating-wininst.html
102
-share/doc/%%PYTHON_VERSION%%/dist/describing-extensions.html
103
 share/doc/%%PYTHON_VERSION%%/dist/dist.css
104
 share/doc/%%PYTHON_VERSION%%/dist/dist.html
105
-share/doc/%%PYTHON_VERSION%%/dist/distutils-term.html
106
-share/doc/%%PYTHON_VERSION%%/dist/examples.html
107
-share/doc/%%PYTHON_VERSION%%/dist/extend-existing.html
108
-share/doc/%%PYTHON_VERSION%%/dist/extending.html
109
 share/doc/%%PYTHON_VERSION%%/dist/index.html
110
-share/doc/%%PYTHON_VERSION%%/dist/install-cmd.html
111
-share/doc/%%PYTHON_VERSION%%/dist/install-data-cmd.html
112
-share/doc/%%PYTHON_VERSION%%/dist/install-lib-cmd.html
113
-share/doc/%%PYTHON_VERSION%%/dist/install-scripts-cmd.html
114
 share/doc/%%PYTHON_VERSION%%/dist/intro.html
115
-share/doc/%%PYTHON_VERSION%%/dist/listing-modules.html
116
-share/doc/%%PYTHON_VERSION%%/dist/listing-packages.html
117
-share/doc/%%PYTHON_VERSION%%/dist/manifest-options.html
118
-share/doc/%%PYTHON_VERSION%%/dist/manifest.html
119
-share/doc/%%PYTHON_VERSION%%/dist/multiple-ext.html
120
-share/doc/%%PYTHON_VERSION%%/dist/new-commands.html
121
-share/doc/%%PYTHON_VERSION%%/dist/node11.html
122
-share/doc/%%PYTHON_VERSION%%/dist/node12.html
123
-share/doc/%%PYTHON_VERSION%%/dist/node13.html
124
-share/doc/%%PYTHON_VERSION%%/dist/node14.html
125
-share/doc/%%PYTHON_VERSION%%/dist/node28.html
126
-share/doc/%%PYTHON_VERSION%%/dist/node45.html
127
-share/doc/%%PYTHON_VERSION%%/dist/node46.html
128
-share/doc/%%PYTHON_VERSION%%/dist/node47.html
129
-share/doc/%%PYTHON_VERSION%%/dist/node48.html
130
-share/doc/%%PYTHON_VERSION%%/dist/pure-mod.html
131
-share/doc/%%PYTHON_VERSION%%/dist/pure-pkg.html
132
-share/doc/%%PYTHON_VERSION%%/dist/python-terms.html
133
-share/doc/%%PYTHON_VERSION%%/dist/reference.html
134
+share/doc/%%PYTHON_VERSION%%/dist/module-distutils.sysconfig.html
135
 share/doc/%%PYTHON_VERSION%%/dist/sdist-cmd.html
136
 share/doc/%%PYTHON_VERSION%%/dist/setup-config.html
137
 share/doc/%%PYTHON_VERSION%%/dist/setup-script.html
138
 share/doc/%%PYTHON_VERSION%%/dist/simple-example.html
139
-share/doc/%%PYTHON_VERSION%%/dist/single-ext.html
140
 share/doc/%%PYTHON_VERSION%%/dist/source-dist.html
141
 share/doc/%%PYTHON_VERSION%%/doc/about.html
142
 share/doc/%%PYTHON_VERSION%%/doc/classes.html
143
 share/doc/%%PYTHON_VERSION%%/doc/contents.html
144
+share/doc/%%PYTHON_VERSION%%/doc/directories.html
145
 share/doc/%%PYTHON_VERSION%%/doc/discussion.html
146
 share/doc/%%PYTHON_VERSION%%/doc/doc.css
147
 share/doc/%%PYTHON_VERSION%%/doc/doc.html
148
 share/doc/%%PYTHON_VERSION%%/doc/futures.html
149
+share/doc/%%PYTHON_VERSION%%/doc/grammar-displays.html
150
+share/doc/%%PYTHON_VERSION%%/doc/gui-markup.html
151
 share/doc/%%PYTHON_VERSION%%/doc/index.html
152
 share/doc/%%PYTHON_VERSION%%/doc/indexing.html
153
 share/doc/%%PYTHON_VERSION%%/doc/info-units.html
154
+share/doc/%%PYTHON_VERSION%%/doc/inline-markup.html
155
+share/doc/%%PYTHON_VERSION%%/doc/intro.html
156
 share/doc/%%PYTHON_VERSION%%/doc/latex-primer.html
157
+share/doc/%%PYTHON_VERSION%%/doc/latex-syntax.html
158
+share/doc/%%PYTHON_VERSION%%/doc/library-markup.html
159
 share/doc/%%PYTHON_VERSION%%/doc/meta-info.html
160
-share/doc/%%PYTHON_VERSION%%/doc/node10.html
161
-share/doc/%%PYTHON_VERSION%%/doc/node11.html
162
-share/doc/%%PYTHON_VERSION%%/doc/node12.html
163
-share/doc/%%PYTHON_VERSION%%/doc/node13.html
164
-share/doc/%%PYTHON_VERSION%%/doc/node14.html
165
-share/doc/%%PYTHON_VERSION%%/doc/node17.html
166
-share/doc/%%PYTHON_VERSION%%/doc/node18.html
167
-share/doc/%%PYTHON_VERSION%%/doc/node19.html
168
-share/doc/%%PYTHON_VERSION%%/doc/node2.html
169
-share/doc/%%PYTHON_VERSION%%/doc/node20.html
170
-share/doc/%%PYTHON_VERSION%%/doc/node3.html
171
+share/doc/%%PYTHON_VERSION%%/doc/misc-text-markup.html
172
+share/doc/%%PYTHON_VERSION%%/doc/module-markup.html
173
 share/doc/%%PYTHON_VERSION%%/doc/node6.html
174
 share/doc/%%PYTHON_VERSION%%/doc/preamble-info.html
175
 share/doc/%%PYTHON_VERSION%%/doc/references.html
176
+share/doc/%%PYTHON_VERSION%%/doc/showing-examples.html
177
+share/doc/%%PYTHON_VERSION%%/doc/special-constructs.html
178
 share/doc/%%PYTHON_VERSION%%/doc/structured.html
179
+share/doc/%%PYTHON_VERSION%%/doc/style-guide.html
180
+share/doc/%%PYTHON_VERSION%%/doc/table-markup.html
181
+share/doc/%%PYTHON_VERSION%%/doc/tools-external.html
182
+share/doc/%%PYTHON_VERSION%%/doc/tools-internal.html
183
+share/doc/%%PYTHON_VERSION%%/doc/tools.html
184
 share/doc/%%PYTHON_VERSION%%/ext/about.html
185
 share/doc/%%PYTHON_VERSION%%/ext/backToExample.html
186
 share/doc/%%PYTHON_VERSION%%/ext/buildValue.html
187
 share/doc/%%PYTHON_VERSION%%/ext/building-on-unix.html
188
-share/doc/%%PYTHON_VERSION%%/ext/building-on-windows.html
189
 share/doc/%%PYTHON_VERSION%%/ext/callingPython.html
190
 share/doc/%%PYTHON_VERSION%%/ext/compilation.html
191
 share/doc/%%PYTHON_VERSION%%/ext/contents.html
192
 share/doc/%%PYTHON_VERSION%%/ext/cplusplus.html
193
-share/doc/%%PYTHON_VERSION%%/ext/custom-interps.html
194
+share/doc/%%PYTHON_VERSION%%/ext/defining-new-types.html
195
 share/doc/%%PYTHON_VERSION%%/ext/distributing.html
196
+share/doc/%%PYTHON_VERSION%%/ext/dnt-basics.html
197
+share/doc/%%PYTHON_VERSION%%/ext/dnt-type-methods.html
198
 share/doc/%%PYTHON_VERSION%%/ext/dynamic-linking.html
199
 share/doc/%%PYTHON_VERSION%%/ext/embedding.html
200
 share/doc/%%PYTHON_VERSION%%/ext/embeddingInCplusplus.html
201
 share/doc/%%PYTHON_VERSION%%/ext/errors.html
202
 share/doc/%%PYTHON_VERSION%%/ext/ext.css
203
 share/doc/%%PYTHON_VERSION%%/ext/ext.html
204
+share/doc/%%PYTHON_VERSION%%/ext/extending-with-embedding.html
205
 share/doc/%%PYTHON_VERSION%%/ext/front.html
206
+share/doc/%%PYTHON_VERSION%%/ext/high-level-embedding.html
207
 share/doc/%%PYTHON_VERSION%%/ext/index.html
208
 share/doc/%%PYTHON_VERSION%%/ext/intro.html
209
 share/doc/%%PYTHON_VERSION%%/ext/link-reqs.html
210
+share/doc/%%PYTHON_VERSION%%/ext/lower-level-embedding.html
211
 share/doc/%%PYTHON_VERSION%%/ext/methodTable.html
212
-share/doc/%%PYTHON_VERSION%%/ext/module-defn-example.html
213
 share/doc/%%PYTHON_VERSION%%/ext/module-defn-options.html
214
+share/doc/%%PYTHON_VERSION%%/ext/node23.html
215
+share/doc/%%PYTHON_VERSION%%/ext/node24.html
216
+share/doc/%%PYTHON_VERSION%%/ext/node25.html
217
+share/doc/%%PYTHON_VERSION%%/ext/node26.html
218
+share/doc/%%PYTHON_VERSION%%/ext/node27.html
219
+share/doc/%%PYTHON_VERSION%%/ext/node28.html
220
+share/doc/%%PYTHON_VERSION%%/ext/node43.html
221
+share/doc/%%PYTHON_VERSION%%/ext/node44.html
222
+share/doc/%%PYTHON_VERSION%%/ext/node45.html
223
 share/doc/%%PYTHON_VERSION%%/ext/nullPointers.html
224
 share/doc/%%PYTHON_VERSION%%/ext/ownershipRules.html
225
 share/doc/%%PYTHON_VERSION%%/ext/parseTuple.html
226
 share/doc/%%PYTHON_VERSION%%/ext/parseTupleAndKeywords.html
227
+share/doc/%%PYTHON_VERSION%%/ext/pure-embedding.html
228
 share/doc/%%PYTHON_VERSION%%/ext/refcounts.html
229
 share/doc/%%PYTHON_VERSION%%/ext/refcountsInPython.html
230
 share/doc/%%PYTHON_VERSION%%/ext/reporting-bugs.html
231
+share/doc/%%PYTHON_VERSION%%/ext/run-func.txt
232
 share/doc/%%PYTHON_VERSION%%/ext/simpleExample.html
233
 share/doc/%%PYTHON_VERSION%%/ext/thinIce.html
234
 share/doc/%%PYTHON_VERSION%%/ext/using-cobjects.html
235
@@ -185,70 +184,34 @@
236
 share/doc/%%PYTHON_VERSION%%/icons/blank.gif
237
 share/doc/%%PYTHON_VERSION%%/icons/contents.gif
238
 share/doc/%%PYTHON_VERSION%%/icons/index.gif
239
-share/doc/%%PYTHON_VERSION%%/icons/labslogo.gif
240
 share/doc/%%PYTHON_VERSION%%/icons/modules.gif
241
 share/doc/%%PYTHON_VERSION%%/icons/next.gif
242
-share/doc/%%PYTHON_VERSION%%/icons/offsite.gif
243
 share/doc/%%PYTHON_VERSION%%/icons/previous.gif
244
-share/doc/%%PYTHON_VERSION%%/icons/pythonlabs.gif
245
 share/doc/%%PYTHON_VERSION%%/icons/up.gif
246
 share/doc/%%PYTHON_VERSION%%/index.html
247
 share/doc/%%PYTHON_VERSION%%/inst/about.html
248
-share/doc/%%PYTHON_VERSION%%/inst/alt-install-home.html
249
-share/doc/%%PYTHON_VERSION%%/inst/alt-install-macos.html
250
-share/doc/%%PYTHON_VERSION%%/inst/alt-install-prefix.html
251
 share/doc/%%PYTHON_VERSION%%/inst/alt-install-windows.html
252
-share/doc/%%PYTHON_VERSION%%/inst/alt-install.html
253
-share/doc/%%PYTHON_VERSION%%/inst/building-ext.html
254
-share/doc/%%PYTHON_VERSION%%/inst/config-files.html
255
-share/doc/%%PYTHON_VERSION%%/inst/contents.html
256
+share/doc/%%PYTHON_VERSION%%/inst/config-syntax.html
257
 share/doc/%%PYTHON_VERSION%%/inst/custom-install.html
258
-share/doc/%%PYTHON_VERSION%%/inst/how-build-works.html
259
-share/doc/%%PYTHON_VERSION%%/inst/how-install-works.html
260
 share/doc/%%PYTHON_VERSION%%/inst/index.html
261
 share/doc/%%PYTHON_VERSION%%/inst/inst.css
262
 share/doc/%%PYTHON_VERSION%%/inst/inst.html
263
-share/doc/%%PYTHON_VERSION%%/inst/intro.html
264
-share/doc/%%PYTHON_VERSION%%/inst/makefile-pre-in.html
265
-share/doc/%%PYTHON_VERSION%%/inst/manual-install.html
266
-share/doc/%%PYTHON_VERSION%%/inst/new-standard.html
267
 share/doc/%%PYTHON_VERSION%%/inst/non-ms-compilers.html
268
-share/doc/%%PYTHON_VERSION%%/inst/old-way.html
269
-share/doc/%%PYTHON_VERSION%%/inst/platform-variations.html
270
-share/doc/%%PYTHON_VERSION%%/inst/pre-distutils.html
271
-share/doc/%%PYTHON_VERSION%%/inst/splitting-up.html
272
 share/doc/%%PYTHON_VERSION%%/inst/standard-install.html
273
 share/doc/%%PYTHON_VERSION%%/inst/trivial-install.html
274
-share/doc/%%PYTHON_VERSION%%/inst/tweak-flags.html
275
-share/doc/%%PYTHON_VERSION%%/lib/AST_Errors.html
276
-share/doc/%%PYTHON_VERSION%%/lib/AST_Examples.html
277
-share/doc/%%PYTHON_VERSION%%/lib/AST_Objects.html
278
 share/doc/%%PYTHON_VERSION%%/lib/Cmd-objects.html
279
 share/doc/%%PYTHON_VERSION%%/lib/ConfigParser-objects.html
280
-share/doc/%%PYTHON_VERSION%%/lib/Contents_of_Module_re.html
281
-share/doc/%%PYTHON_VERSION%%/lib/Converting_ASTs.html
282
-share/doc/%%PYTHON_VERSION%%/lib/Creating_ASTs.html
283
-share/doc/%%PYTHON_VERSION%%/lib/Deterministic_Profiling.html
284
-share/doc/%%PYTHON_VERSION%%/lib/FL_Functions.html
285
-share/doc/%%PYTHON_VERSION%%/lib/Functions_in_cgi_module.html
286
-share/doc/%%PYTHON_VERSION%%/lib/HTTP_Examples.html
287
 share/doc/%%PYTHON_VERSION%%/lib/MimeWriter-objects.html
288
 share/doc/%%PYTHON_VERSION%%/lib/MultiFile-objects.html
289
-share/doc/%%PYTHON_VERSION%%/lib/PrettyPrinter_Objects.html
290
-share/doc/%%PYTHON_VERSION%%/lib/Profiler_Changes.html
291
-share/doc/%%PYTHON_VERSION%%/lib/Profiler_Extensions.html
292
-share/doc/%%PYTHON_VERSION%%/lib/Profiler_Introduction.html
293
-share/doc/%%PYTHON_VERSION%%/lib/Querying_ASTs.html
294
 share/doc/%%PYTHON_VERSION%%/lib/QueueObjects.html
295
 share/doc/%%PYTHON_VERSION%%/lib/Repr-objects.html
296
 share/doc/%%PYTHON_VERSION%%/lib/SMTP-example.html
297
 share/doc/%%PYTHON_VERSION%%/lib/SMTP-objects.html
298
-share/doc/%%PYTHON_VERSION%%/lib/Signal_Example.html
299
-share/doc/%%PYTHON_VERSION%%/lib/Urllib_Examples.html
300
-share/doc/%%PYTHON_VERSION%%/lib/Using_the_cgi_module.html
301
 share/doc/%%PYTHON_VERSION%%/lib/Wave-read-objects.html
302
 share/doc/%%PYTHON_VERSION%%/lib/Wave-write-objects.html
303
 share/doc/%%PYTHON_VERSION%%/lib/about.html
304
+share/doc/%%PYTHON_VERSION%%/lib/abstract-basic-auth-handler.html
305
+share/doc/%%PYTHON_VERSION%%/lib/abstract-digest-auth-handler.html
306
 share/doc/%%PYTHON_VERSION%%/lib/addresslist-objects.html
307
 share/doc/%%PYTHON_VERSION%%/lib/al-config-objects.html
308
 share/doc/%%PYTHON_VERSION%%/lib/al-port-objects.html
309
@@ -260,6 +223,8 @@
310
 share/doc/%%PYTHON_VERSION%%/lib/au-read-objects.html
311
 share/doc/%%PYTHON_VERSION%%/lib/au-write-objects.html
312
 share/doc/%%PYTHON_VERSION%%/lib/audio-device-objects.html
313
+share/doc/%%PYTHON_VERSION%%/lib/base-handler-objects.html
314
+share/doc/%%PYTHON_VERSION%%/lib/binary-objects.html
315
 share/doc/%%PYTHON_VERSION%%/lib/binhex-notes.html
316
 share/doc/%%PYTHON_VERSION%%/lib/bisect-example.html
317
 share/doc/%%PYTHON_VERSION%%/lib/bitstring-ops.html
318
@@ -268,16 +233,20 @@
319
 share/doc/%%PYTHON_VERSION%%/lib/bltin-file-objects.html
320
 share/doc/%%PYTHON_VERSION%%/lib/bltin-null-object.html
321
 share/doc/%%PYTHON_VERSION%%/lib/bltin-type-objects.html
322
+share/doc/%%PYTHON_VERSION%%/lib/boolean-objects.html
323
 share/doc/%%PYTHON_VERSION%%/lib/boolean.html
324
 share/doc/%%PYTHON_VERSION%%/lib/browser-controllers.html
325
 share/doc/%%PYTHON_VERSION%%/lib/bsddb-objects.html
326
 share/doc/%%PYTHON_VERSION%%/lib/built-in-funcs.html
327
 share/doc/%%PYTHON_VERSION%%/lib/builtin.html
328
 share/doc/%%PYTHON_VERSION%%/lib/bytecodes.html
329
+share/doc/%%PYTHON_VERSION%%/lib/cacheftp-handler-objects.html
330
 share/doc/%%PYTHON_VERSION%%/lib/cd-parser-objects.html
331
 share/doc/%%PYTHON_VERSION%%/lib/cgi-intro.html
332
+share/doc/%%PYTHON_VERSION%%/lib/cgi-security.html
333
 share/doc/%%PYTHON_VERSION%%/lib/codec-objects.html
334
 share/doc/%%PYTHON_VERSION%%/lib/comparisons.html
335
+share/doc/%%PYTHON_VERSION%%/lib/compiler.html
336
 share/doc/%%PYTHON_VERSION%%/lib/completer-objects.html
337
 share/doc/%%PYTHON_VERSION%%/lib/condition-objects.html
338
 share/doc/%%PYTHON_VERSION%%/lib/console-objects.html
339
@@ -287,38 +256,86 @@
340
 share/doc/%%PYTHON_VERSION%%/lib/cookie-objects.html
341
 share/doc/%%PYTHON_VERSION%%/lib/crypto.html
342
 share/doc/%%PYTHON_VERSION%%/lib/curses-functions.html
343
+share/doc/%%PYTHON_VERSION%%/lib/curses-panel-objects.html
344
 share/doc/%%PYTHON_VERSION%%/lib/curses-textpad-objects.html
345
 share/doc/%%PYTHON_VERSION%%/lib/curses-window-objects.html
346
+share/doc/%%PYTHON_VERSION%%/lib/cursespanel-functions.html
347
+share/doc/%%PYTHON_VERSION%%/lib/datetime-objects.html
348
 share/doc/%%PYTHON_VERSION%%/lib/dbhash-objects.html
349
 share/doc/%%PYTHON_VERSION%%/lib/debugger-commands.html
350
+share/doc/%%PYTHON_VERSION%%/lib/debugger-hooks.html
351
+share/doc/%%PYTHON_VERSION%%/lib/differ-examples.html
352
+share/doc/%%PYTHON_VERSION%%/lib/differ-objects.html
353
 share/doc/%%PYTHON_VERSION%%/lib/dircmp-objects.html
354
 share/doc/%%PYTHON_VERSION%%/lib/dl-objects.html
355
+share/doc/%%PYTHON_VERSION%%/lib/dom-accessor-methods.html
356
+share/doc/%%PYTHON_VERSION%%/lib/dom-attr-objects.html
357
+share/doc/%%PYTHON_VERSION%%/lib/dom-attributelist-objects.html
358
+share/doc/%%PYTHON_VERSION%%/lib/dom-comment-objects.html
359
+share/doc/%%PYTHON_VERSION%%/lib/dom-conformance.html
360
+share/doc/%%PYTHON_VERSION%%/lib/dom-document-objects.html
361
+share/doc/%%PYTHON_VERSION%%/lib/dom-documenttype-objects.html
362
+share/doc/%%PYTHON_VERSION%%/lib/dom-element-objects.html
363
+share/doc/%%PYTHON_VERSION%%/lib/dom-example.html
364
+share/doc/%%PYTHON_VERSION%%/lib/dom-exceptions.html
365
+share/doc/%%PYTHON_VERSION%%/lib/dom-implementation-objects.html
366
+share/doc/%%PYTHON_VERSION%%/lib/dom-node-objects.html
367
+share/doc/%%PYTHON_VERSION%%/lib/dom-nodelist-objects.html
368
+share/doc/%%PYTHON_VERSION%%/lib/dom-objects.html
369
+share/doc/%%PYTHON_VERSION%%/lib/dom-pi-objects.html
370
+share/doc/%%PYTHON_VERSION%%/lib/dom-text-objects.html
371
+share/doc/%%PYTHON_VERSION%%/lib/dom-type-mapping.html
372
+share/doc/%%PYTHON_VERSION%%/lib/domeventstream-objects.html
373
 share/doc/%%PYTHON_VERSION%%/lib/dtd-handler-objects.html
374
 share/doc/%%PYTHON_VERSION%%/lib/embedding-locale.html
375
 share/doc/%%PYTHON_VERSION%%/lib/entity-resolver-objects.html
376
 share/doc/%%PYTHON_VERSION%%/lib/event-objects.html
377
 share/doc/%%PYTHON_VERSION%%/lib/examples-imp.html
378
+share/doc/%%PYTHON_VERSION%%/lib/expat-content-models.html
379
 share/doc/%%PYTHON_VERSION%%/lib/expat-errors.html
380
 share/doc/%%PYTHON_VERSION%%/lib/expat-example.html
381
+share/doc/%%PYTHON_VERSION%%/lib/expaterror-objects.html
382
+share/doc/%%PYTHON_VERSION%%/lib/fault-objects.html
383
+share/doc/%%PYTHON_VERSION%%/lib/file-handler-objects.html
384
 share/doc/%%PYTHON_VERSION%%/lib/form-objects.html
385
 share/doc/%%PYTHON_VERSION%%/lib/formatter-impls.html
386
 share/doc/%%PYTHON_VERSION%%/lib/formatter-interface.html
387
 share/doc/%%PYTHON_VERSION%%/lib/forms-objects.html
388
+share/doc/%%PYTHON_VERSION%%/lib/fpectl-example.html
389
 share/doc/%%PYTHON_VERSION%%/lib/front.html
390
+share/doc/%%PYTHON_VERSION%%/lib/ftp-handler-objects.html
391
 share/doc/%%PYTHON_VERSION%%/lib/ftp-objects.html
392
 share/doc/%%PYTHON_VERSION%%/lib/genindex.html
393
+share/doc/%%PYTHON_VERSION%%/lib/gopher-handler.html
394
 share/doc/%%PYTHON_VERSION%%/lib/handle-object.html
395
 share/doc/%%PYTHON_VERSION%%/lib/html-parser-objects.html
396
+share/doc/%%PYTHON_VERSION%%/lib/htmlparser-example.html
397
+share/doc/%%PYTHON_VERSION%%/lib/http-basic-auth-handler.html
398
+share/doc/%%PYTHON_VERSION%%/lib/http-digest-auth-handler.html
399
+share/doc/%%PYTHON_VERSION%%/lib/http-handler-objects.html
400
+share/doc/%%PYTHON_VERSION%%/lib/http-password-mgr.html
401
+share/doc/%%PYTHON_VERSION%%/lib/http-redirect-handler.html
402
+share/doc/%%PYTHON_VERSION%%/lib/httpconnection-objects.html
403
+share/doc/%%PYTHON_VERSION%%/lib/httplib-examples.html
404
+share/doc/%%PYTHON_VERSION%%/lib/httpresponse-objects.html
405
+share/doc/%%PYTHON_VERSION%%/lib/https-handler-objects.html
406
+share/doc/%%PYTHON_VERSION%%/lib/idle.html
407
 share/doc/%%PYTHON_VERSION%%/lib/imap4-example.html
408
 share/doc/%%PYTHON_VERSION%%/lib/imap4-objects.html
409
 share/doc/%%PYTHON_VERSION%%/lib/img1.gif
410
+share/doc/%%PYTHON_VERSION%%/lib/img2.gif
411
 share/doc/%%PYTHON_VERSION%%/lib/incremental-parser-objects.html
412
 share/doc/%%PYTHON_VERSION%%/lib/index.html
413
 share/doc/%%PYTHON_VERSION%%/lib/input-source-objects.html
414
+share/doc/%%PYTHON_VERSION%%/lib/inspect-classes-functions.html
415
+share/doc/%%PYTHON_VERSION%%/lib/inspect-source.html
416
+share/doc/%%PYTHON_VERSION%%/lib/inspect-stack.html
417
+share/doc/%%PYTHON_VERSION%%/lib/inspect-types.html
418
 share/doc/%%PYTHON_VERSION%%/lib/internet.html
419
 share/doc/%%PYTHON_VERSION%%/lib/interpreter-objects.html
420
 share/doc/%%PYTHON_VERSION%%/lib/intro.html
421
 share/doc/%%PYTHON_VERSION%%/lib/language.html
422
+share/doc/%%PYTHON_VERSION%%/lib/legacy-unit-tests.html
423
 share/doc/%%PYTHON_VERSION%%/lib/lib.css
424
 share/doc/%%PYTHON_VERSION%%/lib/lib.html
425
 share/doc/%%PYTHON_VERSION%%/lib/locator-objects.html
426
@@ -332,6 +349,9 @@
427
 share/doc/%%PYTHON_VERSION%%/lib/mh-message-objects.html
428
 share/doc/%%PYTHON_VERSION%%/lib/mh-objects.html
429
 share/doc/%%PYTHON_VERSION%%/lib/mimetools-message-objects.html
430
+share/doc/%%PYTHON_VERSION%%/lib/mimetypes-objects.html
431
+share/doc/%%PYTHON_VERSION%%/lib/minidom-and-dom.html
432
+share/doc/%%PYTHON_VERSION%%/lib/minidom-example.txt
433
 share/doc/%%PYTHON_VERSION%%/lib/misc.html
434
 share/doc/%%PYTHON_VERSION%%/lib/mmedia.html
435
 share/doc/%%PYTHON_VERSION%%/lib/modindex.html
436
@@ -342,12 +362,17 @@
437
 share/doc/%%PYTHON_VERSION%%/lib/module-ConfigParser.html
438
 share/doc/%%PYTHON_VERSION%%/lib/module-Cookie.html
439
 share/doc/%%PYTHON_VERSION%%/lib/module-DEVICE.html
440
+share/doc/%%PYTHON_VERSION%%/lib/module-HTMLParser.html
441
 share/doc/%%PYTHON_VERSION%%/lib/module-MimeWriter.html
442
 share/doc/%%PYTHON_VERSION%%/lib/module-Queue.html
443
+share/doc/%%PYTHON_VERSION%%/lib/module-ScrolledText.html
444
 share/doc/%%PYTHON_VERSION%%/lib/module-SimpleHTTPServer.html
445
+share/doc/%%PYTHON_VERSION%%/lib/module-SimpleXMLRPCServer.html
446
 share/doc/%%PYTHON_VERSION%%/lib/module-SocketServer.html
447
 share/doc/%%PYTHON_VERSION%%/lib/module-StringIO.html
448
 share/doc/%%PYTHON_VERSION%%/lib/module-TERMIOSuppercase.html
449
+share/doc/%%PYTHON_VERSION%%/lib/module-Tix.html
450
+share/doc/%%PYTHON_VERSION%%/lib/module-Tkinter.html
451
 share/doc/%%PYTHON_VERSION%%/lib/module-UserDict.html
452
 share/doc/%%PYTHON_VERSION%%/lib/module-UserList.html
453
 share/doc/%%PYTHON_VERSION%%/lib/module-UserString.html
454
@@ -370,6 +395,7 @@
455
 share/doc/%%PYTHON_VERSION%%/lib/module-calendar.html
456
 share/doc/%%PYTHON_VERSION%%/lib/module-cd.html
457
 share/doc/%%PYTHON_VERSION%%/lib/module-cgi.html
458
+share/doc/%%PYTHON_VERSION%%/lib/module-cgitb.html
459
 share/doc/%%PYTHON_VERSION%%/lib/module-chunk.html
460
 share/doc/%%PYTHON_VERSION%%/lib/module-cmath.html
461
 share/doc/%%PYTHON_VERSION%%/lib/module-cmd.html
462
@@ -379,19 +405,34 @@
463
 share/doc/%%PYTHON_VERSION%%/lib/module-colorsys.html
464
 share/doc/%%PYTHON_VERSION%%/lib/module-commands.html
465
 share/doc/%%PYTHON_VERSION%%/lib/module-compileall.html
466
+share/doc/%%PYTHON_VERSION%%/lib/module-compiler.ast.html
467
+share/doc/%%PYTHON_VERSION%%/lib/module-compiler.html
468
+share/doc/%%PYTHON_VERSION%%/lib/module-compiler.visitor.html
469
 share/doc/%%PYTHON_VERSION%%/lib/module-copy.html
470
 share/doc/%%PYTHON_VERSION%%/lib/module-copyreg.html
471
 share/doc/%%PYTHON_VERSION%%/lib/module-crypt.html
472
 share/doc/%%PYTHON_VERSION%%/lib/module-curses.ascii.html
473
 share/doc/%%PYTHON_VERSION%%/lib/module-curses.html
474
+share/doc/%%PYTHON_VERSION%%/lib/module-curses.panel.html
475
 share/doc/%%PYTHON_VERSION%%/lib/module-curses.textpad.html
476
 share/doc/%%PYTHON_VERSION%%/lib/module-curses.wrapper.html
477
 share/doc/%%PYTHON_VERSION%%/lib/module-dbhash.html
478
 share/doc/%%PYTHON_VERSION%%/lib/module-dbm.html
479
+share/doc/%%PYTHON_VERSION%%/lib/module-difflib.html
480
 share/doc/%%PYTHON_VERSION%%/lib/module-dircache.html
481
 share/doc/%%PYTHON_VERSION%%/lib/module-dis.html
482
+share/doc/%%PYTHON_VERSION%%/lib/module-distutils.html
483
 share/doc/%%PYTHON_VERSION%%/lib/module-dl.html
484
+share/doc/%%PYTHON_VERSION%%/lib/module-doctest.html
485
 share/doc/%%PYTHON_VERSION%%/lib/module-dumbdbm.html
486
+share/doc/%%PYTHON_VERSION%%/lib/module-email.Encoders.html
487
+share/doc/%%PYTHON_VERSION%%/lib/module-email.Errors.html
488
+share/doc/%%PYTHON_VERSION%%/lib/module-email.Generator.html
489
+share/doc/%%PYTHON_VERSION%%/lib/module-email.Iterators.html
490
+share/doc/%%PYTHON_VERSION%%/lib/module-email.Message.html
491
+share/doc/%%PYTHON_VERSION%%/lib/module-email.Parser.html
492
+share/doc/%%PYTHON_VERSION%%/lib/module-email.Utils.html
493
+share/doc/%%PYTHON_VERSION%%/lib/module-email.html
494
 share/doc/%%PYTHON_VERSION%%/lib/module-errno.html
495
 share/doc/%%PYTHON_VERSION%%/lib/module-exceptions.html
496
 share/doc/%%PYTHON_VERSION%%/lib/module-fcntl.html
497
@@ -403,6 +444,7 @@
498
 share/doc/%%PYTHON_VERSION%%/lib/module-fm.html
499
 share/doc/%%PYTHON_VERSION%%/lib/module-fnmatch.html
500
 share/doc/%%PYTHON_VERSION%%/lib/module-formatter.html
501
+share/doc/%%PYTHON_VERSION%%/lib/module-fpectl.html
502
 share/doc/%%PYTHON_VERSION%%/lib/module-fpformat.html
503
 share/doc/%%PYTHON_VERSION%%/lib/module-ftplib.html
504
 share/doc/%%PYTHON_VERSION%%/lib/module-gc.html
505
@@ -416,6 +458,7 @@
506
 share/doc/%%PYTHON_VERSION%%/lib/module-gopherlib.html
507
 share/doc/%%PYTHON_VERSION%%/lib/module-grp.html
508
 share/doc/%%PYTHON_VERSION%%/lib/module-gzip.html
509
+share/doc/%%PYTHON_VERSION%%/lib/module-hmac.html
510
 share/doc/%%PYTHON_VERSION%%/lib/module-htmlentitydefs.html
511
 share/doc/%%PYTHON_VERSION%%/lib/module-htmllib.html
512
 share/doc/%%PYTHON_VERSION%%/lib/module-httplib.html
513
@@ -424,6 +467,7 @@
514
 share/doc/%%PYTHON_VERSION%%/lib/module-imgfile.html
515
 share/doc/%%PYTHON_VERSION%%/lib/module-imghdr.html
516
 share/doc/%%PYTHON_VERSION%%/lib/module-imp.html
517
+share/doc/%%PYTHON_VERSION%%/lib/module-inspect.html
518
 share/doc/%%PYTHON_VERSION%%/lib/module-jpeg.html
519
 share/doc/%%PYTHON_VERSION%%/lib/module-keyword.html
520
 share/doc/%%PYTHON_VERSION%%/lib/module-linecache.html
521
@@ -464,6 +508,7 @@
522
 share/doc/%%PYTHON_VERSION%%/lib/module-pwd.html
523
 share/doc/%%PYTHON_VERSION%%/lib/module-pyclbr.html
524
 share/doc/%%PYTHON_VERSION%%/lib/module-pycompile.html
525
+share/doc/%%PYTHON_VERSION%%/lib/module-pydoc.html
526
 share/doc/%%PYTHON_VERSION%%/lib/module-quopri.html
527
 share/doc/%%PYTHON_VERSION%%/lib/module-random.html
528
 share/doc/%%PYTHON_VERSION%%/lib/module-re.html
529
@@ -510,24 +555,34 @@
530
 share/doc/%%PYTHON_VERSION%%/lib/module-tokenize.html
531
 share/doc/%%PYTHON_VERSION%%/lib/module-traceback.html
532
 share/doc/%%PYTHON_VERSION%%/lib/module-tty.html
533
+share/doc/%%PYTHON_VERSION%%/lib/module-turtle.html
534
 share/doc/%%PYTHON_VERSION%%/lib/module-types.html
535
 share/doc/%%PYTHON_VERSION%%/lib/module-unicodedata.html
536
+share/doc/%%PYTHON_VERSION%%/lib/module-unittest.html
537
 share/doc/%%PYTHON_VERSION%%/lib/module-urllib.html
538
+share/doc/%%PYTHON_VERSION%%/lib/module-urllib2.html
539
 share/doc/%%PYTHON_VERSION%%/lib/module-urlparse.html
540
 share/doc/%%PYTHON_VERSION%%/lib/module-user.html
541
 share/doc/%%PYTHON_VERSION%%/lib/module-uu.html
542
+share/doc/%%PYTHON_VERSION%%/lib/module-warnings.html
543
 share/doc/%%PYTHON_VERSION%%/lib/module-wave.html
544
+share/doc/%%PYTHON_VERSION%%/lib/module-weakref.html
545
 share/doc/%%PYTHON_VERSION%%/lib/module-webbrowser.html
546
 share/doc/%%PYTHON_VERSION%%/lib/module-whichdb.html
547
 share/doc/%%PYTHON_VERSION%%/lib/module-whrandom.html
548
 share/doc/%%PYTHON_VERSION%%/lib/module-winsound.html
549
 share/doc/%%PYTHON_VERSION%%/lib/module-xdrlib.html
550
+share/doc/%%PYTHON_VERSION%%/lib/module-xml.dom.html
551
+share/doc/%%PYTHON_VERSION%%/lib/module-xml.dom.minidom.html
552
+share/doc/%%PYTHON_VERSION%%/lib/module-xml.dom.pulldom.html
553
 share/doc/%%PYTHON_VERSION%%/lib/module-xml.parsers.expat.html
554
 share/doc/%%PYTHON_VERSION%%/lib/module-xml.sax.handler.html
555
 share/doc/%%PYTHON_VERSION%%/lib/module-xml.sax.html
556
 share/doc/%%PYTHON_VERSION%%/lib/module-xml.sax.saxutils.html
557
 share/doc/%%PYTHON_VERSION%%/lib/module-xml.sax.xmlreader.html
558
 share/doc/%%PYTHON_VERSION%%/lib/module-xmllib.html
559
+share/doc/%%PYTHON_VERSION%%/lib/module-xmlrpclib.html
560
+share/doc/%%PYTHON_VERSION%%/lib/module-xreadlines.html
561
 share/doc/%%PYTHON_VERSION%%/lib/module-zipfile.html
562
 share/doc/%%PYTHON_VERSION%%/lib/module-zlib.html
563
 share/doc/%%PYTHON_VERSION%%/lib/morsel-objects.html
564
@@ -539,48 +594,139 @@
565
 share/doc/%%PYTHON_VERSION%%/lib/netdata.html
566
 share/doc/%%PYTHON_VERSION%%/lib/netrc-objects.html
567
 share/doc/%%PYTHON_VERSION%%/lib/nntp-objects.html
568
+share/doc/%%PYTHON_VERSION%%/lib/node102.html
569
+share/doc/%%PYTHON_VERSION%%/lib/node113.html
570
+share/doc/%%PYTHON_VERSION%%/lib/node123.html
571
+share/doc/%%PYTHON_VERSION%%/lib/node124.html
572
+share/doc/%%PYTHON_VERSION%%/lib/node125.html
573
+share/doc/%%PYTHON_VERSION%%/lib/node126.html
574
+share/doc/%%PYTHON_VERSION%%/lib/node127.html
575
 share/doc/%%PYTHON_VERSION%%/lib/node128.html
576
-share/doc/%%PYTHON_VERSION%%/lib/node141.html
577
-share/doc/%%PYTHON_VERSION%%/lib/node144.html
578
-share/doc/%%PYTHON_VERSION%%/lib/node145.html
579
-share/doc/%%PYTHON_VERSION%%/lib/node146.html
580
-share/doc/%%PYTHON_VERSION%%/lib/node147.html
581
-share/doc/%%PYTHON_VERSION%%/lib/node148.html
582
-share/doc/%%PYTHON_VERSION%%/lib/node149.html
583
-share/doc/%%PYTHON_VERSION%%/lib/node150.html
584
-share/doc/%%PYTHON_VERSION%%/lib/node151.html
585
-share/doc/%%PYTHON_VERSION%%/lib/node152.html
586
-share/doc/%%PYTHON_VERSION%%/lib/node153.html
587
-share/doc/%%PYTHON_VERSION%%/lib/node154.html
588
-share/doc/%%PYTHON_VERSION%%/lib/node155.html
589
-share/doc/%%PYTHON_VERSION%%/lib/node215.html
590
-share/doc/%%PYTHON_VERSION%%/lib/node216.html
591
-share/doc/%%PYTHON_VERSION%%/lib/node222.html
592
-share/doc/%%PYTHON_VERSION%%/lib/node241.html
593
-share/doc/%%PYTHON_VERSION%%/lib/node243.html
594
-share/doc/%%PYTHON_VERSION%%/lib/node244.html
595
-share/doc/%%PYTHON_VERSION%%/lib/node245.html
596
-share/doc/%%PYTHON_VERSION%%/lib/node246.html
597
-share/doc/%%PYTHON_VERSION%%/lib/node247.html
598
-share/doc/%%PYTHON_VERSION%%/lib/node252.html
599
-share/doc/%%PYTHON_VERSION%%/lib/node366.html
600
-share/doc/%%PYTHON_VERSION%%/lib/node376.html
601
-share/doc/%%PYTHON_VERSION%%/lib/node377.html
602
-share/doc/%%PYTHON_VERSION%%/lib/node413.html
603
-share/doc/%%PYTHON_VERSION%%/lib/node422.html
604
-share/doc/%%PYTHON_VERSION%%/lib/node423.html
605
-share/doc/%%PYTHON_VERSION%%/lib/node424.html
606
-share/doc/%%PYTHON_VERSION%%/lib/node425.html
607
-share/doc/%%PYTHON_VERSION%%/lib/node427.html
608
-share/doc/%%PYTHON_VERSION%%/lib/node80.html
609
+share/doc/%%PYTHON_VERSION%%/lib/node129.html
610
+share/doc/%%PYTHON_VERSION%%/lib/node130.html
611
+share/doc/%%PYTHON_VERSION%%/lib/node181.html
612
+share/doc/%%PYTHON_VERSION%%/lib/node197.html
613
+share/doc/%%PYTHON_VERSION%%/lib/node200.html
614
+share/doc/%%PYTHON_VERSION%%/lib/node201.html
615
+share/doc/%%PYTHON_VERSION%%/lib/node202.html
616
+share/doc/%%PYTHON_VERSION%%/lib/node203.html
617
+share/doc/%%PYTHON_VERSION%%/lib/node204.html
618
+share/doc/%%PYTHON_VERSION%%/lib/node205.html
619
+share/doc/%%PYTHON_VERSION%%/lib/node206.html
620
+share/doc/%%PYTHON_VERSION%%/lib/node207.html
621
+share/doc/%%PYTHON_VERSION%%/lib/node208.html
622
+share/doc/%%PYTHON_VERSION%%/lib/node209.html
623
+share/doc/%%PYTHON_VERSION%%/lib/node210.html
624
+share/doc/%%PYTHON_VERSION%%/lib/node211.html
625
+share/doc/%%PYTHON_VERSION%%/lib/node214.html
626
+share/doc/%%PYTHON_VERSION%%/lib/node263.html
627
+share/doc/%%PYTHON_VERSION%%/lib/node272.html
628
+share/doc/%%PYTHON_VERSION%%/lib/node273.html
629
+share/doc/%%PYTHON_VERSION%%/lib/node281.html
630
+share/doc/%%PYTHON_VERSION%%/lib/node282.html
631
+share/doc/%%PYTHON_VERSION%%/lib/node284.html
632
+share/doc/%%PYTHON_VERSION%%/lib/node289.html
633
+share/doc/%%PYTHON_VERSION%%/lib/node295.html
634
+share/doc/%%PYTHON_VERSION%%/lib/node296.html
635
+share/doc/%%PYTHON_VERSION%%/lib/node297.html
636
+share/doc/%%PYTHON_VERSION%%/lib/node298.html
637
+share/doc/%%PYTHON_VERSION%%/lib/node300.html
638
+share/doc/%%PYTHON_VERSION%%/lib/node301.html
639
+share/doc/%%PYTHON_VERSION%%/lib/node302.html
640
+share/doc/%%PYTHON_VERSION%%/lib/node303.html
641
+share/doc/%%PYTHON_VERSION%%/lib/node307.html
642
+share/doc/%%PYTHON_VERSION%%/lib/node365.html
643
+share/doc/%%PYTHON_VERSION%%/lib/node380.html
644
+share/doc/%%PYTHON_VERSION%%/lib/node381.html
645
+share/doc/%%PYTHON_VERSION%%/lib/node383.html
646
+share/doc/%%PYTHON_VERSION%%/lib/node388.html
647
+share/doc/%%PYTHON_VERSION%%/lib/node389.html
648
+share/doc/%%PYTHON_VERSION%%/lib/node41.html
649
+share/doc/%%PYTHON_VERSION%%/lib/node437.html
650
+share/doc/%%PYTHON_VERSION%%/lib/node438.html
651
+share/doc/%%PYTHON_VERSION%%/lib/node500.html
652
+share/doc/%%PYTHON_VERSION%%/lib/node501.html
653
+share/doc/%%PYTHON_VERSION%%/lib/node502.html
654
+share/doc/%%PYTHON_VERSION%%/lib/node503.html
655
+share/doc/%%PYTHON_VERSION%%/lib/node504.html
656
+share/doc/%%PYTHON_VERSION%%/lib/node506.html
657
+share/doc/%%PYTHON_VERSION%%/lib/node507.html
658
+share/doc/%%PYTHON_VERSION%%/lib/node509.html
659
+share/doc/%%PYTHON_VERSION%%/lib/node510.html
660
+share/doc/%%PYTHON_VERSION%%/lib/node511.html
661
+share/doc/%%PYTHON_VERSION%%/lib/node512.html
662
+share/doc/%%PYTHON_VERSION%%/lib/node513.html
663
+share/doc/%%PYTHON_VERSION%%/lib/node514.html
664
+share/doc/%%PYTHON_VERSION%%/lib/node515.html
665
+share/doc/%%PYTHON_VERSION%%/lib/node517.html
666
+share/doc/%%PYTHON_VERSION%%/lib/node518.html
667
+share/doc/%%PYTHON_VERSION%%/lib/node519.html
668
+share/doc/%%PYTHON_VERSION%%/lib/node520.html
669
+share/doc/%%PYTHON_VERSION%%/lib/node521.html
670
+share/doc/%%PYTHON_VERSION%%/lib/node522.html
671
+share/doc/%%PYTHON_VERSION%%/lib/node523.html
672
+share/doc/%%PYTHON_VERSION%%/lib/node524.html
673
+share/doc/%%PYTHON_VERSION%%/lib/node525.html
674
+share/doc/%%PYTHON_VERSION%%/lib/node526.html
675
+share/doc/%%PYTHON_VERSION%%/lib/node527.html
676
+share/doc/%%PYTHON_VERSION%%/lib/node532.html
677
+share/doc/%%PYTHON_VERSION%%/lib/node533.html
678
+share/doc/%%PYTHON_VERSION%%/lib/node534.html
679
+share/doc/%%PYTHON_VERSION%%/lib/node535.html
680
+share/doc/%%PYTHON_VERSION%%/lib/node536.html
681
+share/doc/%%PYTHON_VERSION%%/lib/node537.html
682
+share/doc/%%PYTHON_VERSION%%/lib/node538.html
683
+share/doc/%%PYTHON_VERSION%%/lib/node539.html
684
+share/doc/%%PYTHON_VERSION%%/lib/node540.html
685
+share/doc/%%PYTHON_VERSION%%/lib/node541.html
686
+share/doc/%%PYTHON_VERSION%%/lib/node547.html
687
+share/doc/%%PYTHON_VERSION%%/lib/node551.html
688
+share/doc/%%PYTHON_VERSION%%/lib/node552.html
689
+share/doc/%%PYTHON_VERSION%%/lib/node553.html
690
+share/doc/%%PYTHON_VERSION%%/lib/node554.html
691
+share/doc/%%PYTHON_VERSION%%/lib/node555.html
692
+share/doc/%%PYTHON_VERSION%%/lib/node556.html
693
+share/doc/%%PYTHON_VERSION%%/lib/node557.html
694
+share/doc/%%PYTHON_VERSION%%/lib/node558.html
695
+share/doc/%%PYTHON_VERSION%%/lib/node573.html
696
+share/doc/%%PYTHON_VERSION%%/lib/node574.html
697
+share/doc/%%PYTHON_VERSION%%/lib/node576.html
698
+share/doc/%%PYTHON_VERSION%%/lib/node577.html
699
+share/doc/%%PYTHON_VERSION%%/lib/node579.html
700
+share/doc/%%PYTHON_VERSION%%/lib/node589.html
701
+share/doc/%%PYTHON_VERSION%%/lib/node59.html
702
+share/doc/%%PYTHON_VERSION%%/lib/node60.html
703
+share/doc/%%PYTHON_VERSION%%/lib/node604.html
704
+share/doc/%%PYTHON_VERSION%%/lib/node61.html
705
+share/doc/%%PYTHON_VERSION%%/lib/node613.html
706
+share/doc/%%PYTHON_VERSION%%/lib/node614.html
707
+share/doc/%%PYTHON_VERSION%%/lib/node615.html
708
+share/doc/%%PYTHON_VERSION%%/lib/node616.html
709
+share/doc/%%PYTHON_VERSION%%/lib/node618.html
710
+share/doc/%%PYTHON_VERSION%%/lib/node62.html
711
+share/doc/%%PYTHON_VERSION%%/lib/node620.html
712
+share/doc/%%PYTHON_VERSION%%/lib/node621.html
713
+share/doc/%%PYTHON_VERSION%%/lib/node622.html
714
+share/doc/%%PYTHON_VERSION%%/lib/node65.html
715
+share/doc/%%PYTHON_VERSION%%/lib/node66.html
716
+share/doc/%%PYTHON_VERSION%%/lib/node85.html
717
+share/doc/%%PYTHON_VERSION%%/lib/node99.html
718
 share/doc/%%PYTHON_VERSION%%/lib/obsolete-modules.html
719
+share/doc/%%PYTHON_VERSION%%/lib/opener-director-objects.html
720
+share/doc/%%PYTHON_VERSION%%/lib/operator-map.html
721
+share/doc/%%PYTHON_VERSION%%/lib/organizing-tests.html
722
 share/doc/%%PYTHON_VERSION%%/lib/os-fd-ops.html
723
 share/doc/%%PYTHON_VERSION%%/lib/os-file-dir.html
724
 share/doc/%%PYTHON_VERSION%%/lib/os-newstreams.html
725
 share/doc/%%PYTHON_VERSION%%/lib/os-path.html
726
 share/doc/%%PYTHON_VERSION%%/lib/os-process.html
727
 share/doc/%%PYTHON_VERSION%%/lib/os-procinfo.html
728
+share/doc/%%PYTHON_VERSION%%/lib/other-gui-packages.html
729
+share/doc/%%PYTHON_VERSION%%/lib/pen-rawpen-objects.html
730
 share/doc/%%PYTHON_VERSION%%/lib/pickle-example.html
731
+share/doc/%%PYTHON_VERSION%%/lib/pickle-inst.html
732
+share/doc/%%PYTHON_VERSION%%/lib/pickle-protocol.html
733
+share/doc/%%PYTHON_VERSION%%/lib/pickle-sec.html
734
 share/doc/%%PYTHON_VERSION%%/lib/player-objects.html
735
 share/doc/%%PYTHON_VERSION%%/lib/poll-objects.html
736
 share/doc/%%PYTHON_VERSION%%/lib/pop3-example.html
737
@@ -588,13 +734,15 @@
738
 share/doc/%%PYTHON_VERSION%%/lib/popen3-objects.html
739
 share/doc/%%PYTHON_VERSION%%/lib/posix-contents.html
740
 share/doc/%%PYTHON_VERSION%%/lib/posix-large-files.html
741
-share/doc/%%PYTHON_VERSION%%/lib/profile-HotProfile.html
742
 share/doc/%%PYTHON_VERSION%%/lib/profile-calibration.html
743
 share/doc/%%PYTHON_VERSION%%/lib/profile-instant.html
744
 share/doc/%%PYTHON_VERSION%%/lib/profile-limits.html
745
-share/doc/%%PYTHON_VERSION%%/lib/profile-old.html
746
 share/doc/%%PYTHON_VERSION%%/lib/profile-stats.html
747
 share/doc/%%PYTHON_VERSION%%/lib/profile.html
748
+share/doc/%%PYTHON_VERSION%%/lib/protocol-error-objects.html
749
+share/doc/%%PYTHON_VERSION%%/lib/proxy-basic-auth-handler.html
750
+share/doc/%%PYTHON_VERSION%%/lib/proxy-digest-auth-handler.html
751
+share/doc/%%PYTHON_VERSION%%/lib/proxy-handler.html
752
 share/doc/%%PYTHON_VERSION%%/lib/pyclbr-class-objects.html
753
 share/doc/%%PYTHON_VERSION%%/lib/python.html
754
 share/doc/%%PYTHON_VERSION%%/lib/pyzipfile-objects.html
755
@@ -602,19 +750,28 @@
756
 share/doc/%%PYTHON_VERSION%%/lib/re-syntax.html
757
 share/doc/%%PYTHON_VERSION%%/lib/readline-example.html
758
 share/doc/%%PYTHON_VERSION%%/lib/reporting-bugs.html
759
+share/doc/%%PYTHON_VERSION%%/lib/request-objects.html
760
 share/doc/%%PYTHON_VERSION%%/lib/restricted.html
761
+share/doc/%%PYTHON_VERSION%%/lib/rexec-extension.html
762
+share/doc/%%PYTHON_VERSION%%/lib/rexec-objects.html
763
 share/doc/%%PYTHON_VERSION%%/lib/rlock-objects.html
764
-share/doc/%%PYTHON_VERSION%%/lib/rng-objects.html
765
+share/doc/%%PYTHON_VERSION%%/lib/sax-error-handler.html
766
 share/doc/%%PYTHON_VERSION%%/lib/sax-exception-objects.html
767
 share/doc/%%PYTHON_VERSION%%/lib/scheduler-objects.html
768
+share/doc/%%PYTHON_VERSION%%/lib/semaphore-examples.html
769
 share/doc/%%PYTHON_VERSION%%/lib/semaphore-objects.html
770
+share/doc/%%PYTHON_VERSION%%/lib/sequence-matcher.html
771
+share/doc/%%PYTHON_VERSION%%/lib/sequencematcher-examples.html
772
+share/doc/%%PYTHON_VERSION%%/lib/serverproxy-objects.html
773
 share/doc/%%PYTHON_VERSION%%/lib/sgi.html
774
 share/doc/%%PYTHON_VERSION%%/lib/shlex-objects.html
775
 share/doc/%%PYTHON_VERSION%%/lib/shutil-example.html
776
+share/doc/%%PYTHON_VERSION%%/lib/simple-xmlrpc-servers.html
777
 share/doc/%%PYTHON_VERSION%%/lib/socket-example.html
778
 share/doc/%%PYTHON_VERSION%%/lib/socket-objects.html
779
 share/doc/%%PYTHON_VERSION%%/lib/someos.html
780
 share/doc/%%PYTHON_VERSION%%/lib/specialattrs.html
781
+share/doc/%%PYTHON_VERSION%%/lib/ssl-objects.html
782
 share/doc/%%PYTHON_VERSION%%/lib/stream-reader-objects.html
783
 share/doc/%%PYTHON_VERSION%%/lib/stream-reader-writer.html
784
 share/doc/%%PYTHON_VERSION%%/lib/stream-recoder-objects.html
785
@@ -626,10 +783,18 @@
786
 share/doc/%%PYTHON_VERSION%%/lib/telnet-example.html
787
 share/doc/%%PYTHON_VERSION%%/lib/telnet-objects.html
788
 share/doc/%%PYTHON_VERSION%%/lib/template-objects.html
789
-share/doc/%%PYTHON_VERSION%%/lib/termios_Example.html
790
+share/doc/%%PYTHON_VERSION%%/lib/testcase-objects.html
791
+share/doc/%%PYTHON_VERSION%%/lib/testloader-objects.html
792
+share/doc/%%PYTHON_VERSION%%/lib/testresult-objects.html
793
+share/doc/%%PYTHON_VERSION%%/lib/testsuite-objects.html
794
 share/doc/%%PYTHON_VERSION%%/lib/thread-objects.html
795
+share/doc/%%PYTHON_VERSION%%/lib/timer-objects.html
796
+share/doc/%%PYTHON_VERSION%%/lib/tkinter-basic-mapping.html
797
+share/doc/%%PYTHON_VERSION%%/lib/tkinter-setting-options.html
798
+share/doc/%%PYTHON_VERSION%%/lib/tkinter.html
799
 share/doc/%%PYTHON_VERSION%%/lib/traceback-example.html
800
 share/doc/%%PYTHON_VERSION%%/lib/truth.html
801
+share/doc/%%PYTHON_VERSION%%/lib/typeiter.html
802
 share/doc/%%PYTHON_VERSION%%/lib/types.html
803
 share/doc/%%PYTHON_VERSION%%/lib/typesfunctions.html
804
 share/doc/%%PYTHON_VERSION%%/lib/typesinternal.html
805
@@ -644,15 +809,25 @@
806
 share/doc/%%PYTHON_VERSION%%/lib/typesseq-xrange.html
807
 share/doc/%%PYTHON_VERSION%%/lib/typesseq.html
808
 share/doc/%%PYTHON_VERSION%%/lib/undoc.html
809
+share/doc/%%PYTHON_VERSION%%/lib/unittest-contents.html
810
 share/doc/%%PYTHON_VERSION%%/lib/unix.html
811
+share/doc/%%PYTHON_VERSION%%/lib/unknown-handler-objects.html
812
 share/doc/%%PYTHON_VERSION%%/lib/urlopener-objs.html
813
+share/doc/%%PYTHON_VERSION%%/lib/warning-categories.html
814
+share/doc/%%PYTHON_VERSION%%/lib/warning-filter.html
815
+share/doc/%%PYTHON_VERSION%%/lib/warning-functions.html
816
+share/doc/%%PYTHON_VERSION%%/lib/weakref-example.html
817
+share/doc/%%PYTHON_VERSION%%/lib/weakref-extension.html
818
+share/doc/%%PYTHON_VERSION%%/lib/weakref-objects.html
819
 share/doc/%%PYTHON_VERSION%%/lib/writer-impls.html
820
 share/doc/%%PYTHON_VERSION%%/lib/writer-interface.html
821
 share/doc/%%PYTHON_VERSION%%/lib/xdr-exceptions.html
822
 share/doc/%%PYTHON_VERSION%%/lib/xdr-packer-objects.html
823
 share/doc/%%PYTHON_VERSION%%/lib/xdr-unpacker-objects.html
824
 share/doc/%%PYTHON_VERSION%%/lib/xml-namespace.html
825
+share/doc/%%PYTHON_VERSION%%/lib/xmlparser-objects.html
826
 share/doc/%%PYTHON_VERSION%%/lib/xmlreader-objects.html
827
+share/doc/%%PYTHON_VERSION%%/lib/xmlrpc-client-example.html
828
 share/doc/%%PYTHON_VERSION%%/lib/zipfile-objects.html
829
 share/doc/%%PYTHON_VERSION%%/lib/zipinfo-objects.html
830
 share/doc/%%PYTHON_VERSION%%/mac/EditPythonPrefs.html
831
@@ -672,7 +847,6 @@
832
 share/doc/%%PYTHON_VERSION%%/mac/creator-code.html
833
 share/doc/%%PYTHON_VERSION%%/mac/defaults.html
834
 share/doc/%%PYTHON_VERSION%%/mac/dialogwindow-objects.html
835
-share/doc/%%PYTHON_VERSION%%/mac/dnr-result-object.html
836
 share/doc/%%PYTHON_VERSION%%/mac/finfo-objects.html
837
 share/doc/%%PYTHON_VERSION%%/mac/front.html
838
 share/doc/%%PYTHON_VERSION%%/mac/fsspec-objects.html
839
@@ -684,29 +858,37 @@
840
 share/doc/%%PYTHON_VERSION%%/mac/mac.html
841
 share/doc/%%PYTHON_VERSION%%/mac/macpython-modules.html
842
 share/doc/%%PYTHON_VERSION%%/mac/modindex.html
843
-share/doc/%%PYTHON_VERSION%%/mac/module-AE.html
844
-share/doc/%%PYTHON_VERSION%%/mac/module-Cm.html
845
-share/doc/%%PYTHON_VERSION%%/mac/module-Ctl.html
846
-share/doc/%%PYTHON_VERSION%%/mac/module-Dlg.html
847
+share/doc/%%PYTHON_VERSION%%/mac/module-Carbon.AE.html
848
+share/doc/%%PYTHON_VERSION%%/mac/module-Carbon.App.html
849
+share/doc/%%PYTHON_VERSION%%/mac/module-Carbon.CF.html
850
+share/doc/%%PYTHON_VERSION%%/mac/module-Carbon.Cm.html
851
+share/doc/%%PYTHON_VERSION%%/mac/module-Carbon.Ctl.html
852
+share/doc/%%PYTHON_VERSION%%/mac/module-Carbon.Dlg.html
853
+share/doc/%%PYTHON_VERSION%%/mac/module-Carbon.Evt.html
854
+share/doc/%%PYTHON_VERSION%%/mac/module-Carbon.Fm.html
855
+share/doc/%%PYTHON_VERSION%%/mac/module-Carbon.Help.html
856
+share/doc/%%PYTHON_VERSION%%/mac/module-Carbon.List.html
857
+share/doc/%%PYTHON_VERSION%%/mac/module-Carbon.Menu.html
858
+share/doc/%%PYTHON_VERSION%%/mac/module-Carbon.Mlte.html
859
+share/doc/%%PYTHON_VERSION%%/mac/module-Carbon.Qd.html
860
+share/doc/%%PYTHON_VERSION%%/mac/module-Carbon.Qdoffs.html
861
+share/doc/%%PYTHON_VERSION%%/mac/module-Carbon.Qt.html
862
+share/doc/%%PYTHON_VERSION%%/mac/module-Carbon.Res.html
863
+share/doc/%%PYTHON_VERSION%%/mac/module-Carbon.Scrap.html
864
+share/doc/%%PYTHON_VERSION%%/mac/module-Carbon.Snd.html
865
+share/doc/%%PYTHON_VERSION%%/mac/module-Carbon.TE.html
866
+share/doc/%%PYTHON_VERSION%%/mac/module-Carbon.Win.html
867
+share/doc/%%PYTHON_VERSION%%/mac/module-ColorPicker.html
868
 share/doc/%%PYTHON_VERSION%%/mac/module-EasyDialogs.html
869
-share/doc/%%PYTHON_VERSION%%/mac/module-Evt.html
870
-share/doc/%%PYTHON_VERSION%%/mac/module-Fm.html
871
 share/doc/%%PYTHON_VERSION%%/mac/module-FrameWork.html
872
-share/doc/%%PYTHON_VERSION%%/mac/module-List.html
873
 share/doc/%%PYTHON_VERSION%%/mac/module-MacOS.html
874
-share/doc/%%PYTHON_VERSION%%/mac/module-Menu.html
875
 share/doc/%%PYTHON_VERSION%%/mac/module-MiniAEFrame.html
876
+share/doc/%%PYTHON_VERSION%%/mac/module-Nac.html
877
 share/doc/%%PYTHON_VERSION%%/mac/module-PixMapWrapper.html
878
-share/doc/%%PYTHON_VERSION%%/mac/module-Qd.html
879
-share/doc/%%PYTHON_VERSION%%/mac/module-Qt.html
880
-share/doc/%%PYTHON_VERSION%%/mac/module-Res.html
881
-share/doc/%%PYTHON_VERSION%%/mac/module-Scrap.html
882
-share/doc/%%PYTHON_VERSION%%/mac/module-Snd.html
883
-share/doc/%%PYTHON_VERSION%%/mac/module-TE.html
884
 share/doc/%%PYTHON_VERSION%%/mac/module-W.html
885
-share/doc/%%PYTHON_VERSION%%/mac/module-Win.html
886
 share/doc/%%PYTHON_VERSION%%/mac/module-aepack.html
887
 share/doc/%%PYTHON_VERSION%%/mac/module-aetypes.html
888
+share/doc/%%PYTHON_VERSION%%/mac/module-applesingle.html
889
 share/doc/%%PYTHON_VERSION%%/mac/module-buildtools.html
890
 share/doc/%%PYTHON_VERSION%%/mac/module-cfmfile.html
891
 share/doc/%%PYTHON_VERSION%%/mac/module-ctb.html
892
@@ -714,32 +896,33 @@
893
 share/doc/%%PYTHON_VERSION%%/mac/module-ic.html
894
 share/doc/%%PYTHON_VERSION%%/mac/module-icopen.html
895
 share/doc/%%PYTHON_VERSION%%/mac/module-mac.html
896
-share/doc/%%PYTHON_VERSION%%/mac/module-macdnr.html
897
 share/doc/%%PYTHON_VERSION%%/mac/module-macerrors.html
898
 share/doc/%%PYTHON_VERSION%%/mac/module-macfs.html
899
 share/doc/%%PYTHON_VERSION%%/mac/module-macfsn.html
900
 share/doc/%%PYTHON_VERSION%%/mac/module-macostools.html
901
 share/doc/%%PYTHON_VERSION%%/mac/module-macpath.html
902
+share/doc/%%PYTHON_VERSION%%/mac/module-macresource.html
903
 share/doc/%%PYTHON_VERSION%%/mac/module-macspeech.html
904
-share/doc/%%PYTHON_VERSION%%/mac/module-mactcp.html
905
 share/doc/%%PYTHON_VERSION%%/mac/module-mactty.html
906
+share/doc/%%PYTHON_VERSION%%/mac/module-mkcwproject.html
907
 share/doc/%%PYTHON_VERSION%%/mac/module-nsremote.html
908
 share/doc/%%PYTHON_VERSION%%/mac/module-preferences.html
909
 share/doc/%%PYTHON_VERSION%%/mac/module-pyresource.html
910
 share/doc/%%PYTHON_VERSION%%/mac/module-pythonprefs.html
911
 share/doc/%%PYTHON_VERSION%%/mac/module-quietconsole.html
912
+share/doc/%%PYTHON_VERSION%%/mac/module-videoreader.html
913
 share/doc/%%PYTHON_VERSION%%/mac/module-waste.html
914
 share/doc/%%PYTHON_VERSION%%/mac/node10.html
915
 share/doc/%%PYTHON_VERSION%%/mac/node11.html
916
 share/doc/%%PYTHON_VERSION%%/mac/node12.html
917
 share/doc/%%PYTHON_VERSION%%/mac/node15.html
918
 share/doc/%%PYTHON_VERSION%%/mac/node23.html
919
-share/doc/%%PYTHON_VERSION%%/mac/node36.html
920
-share/doc/%%PYTHON_VERSION%%/mac/node41.html
921
-share/doc/%%PYTHON_VERSION%%/mac/node42.html
922
-share/doc/%%PYTHON_VERSION%%/mac/node43.html
923
+share/doc/%%PYTHON_VERSION%%/mac/node34.html
924
 share/doc/%%PYTHON_VERSION%%/mac/node6.html
925
 share/doc/%%PYTHON_VERSION%%/mac/node7.html
926
+share/doc/%%PYTHON_VERSION%%/mac/node94.html
927
+share/doc/%%PYTHON_VERSION%%/mac/node95.html
928
+share/doc/%%PYTHON_VERSION%%/mac/node96.html
929
 share/doc/%%PYTHON_VERSION%%/mac/scripting-with-BBedit.html
930
 share/doc/%%PYTHON_VERSION%%/mac/scrolledwindow-object.html
931
 share/doc/%%PYTHON_VERSION%%/mac/search-path.html
932
@@ -774,9 +957,11 @@
933
 share/doc/%%PYTHON_VERSION%%/ref/conversions.html
934
 share/doc/%%PYTHON_VERSION%%/ref/customization.html
935
 share/doc/%%PYTHON_VERSION%%/ref/datamodel.html
936
+share/doc/%%PYTHON_VERSION%%/ref/definitions.html
937
 share/doc/%%PYTHON_VERSION%%/ref/del.html
938
 share/doc/%%PYTHON_VERSION%%/ref/delimiters.html
939
 share/doc/%%PYTHON_VERSION%%/ref/dict.html
940
+share/doc/%%PYTHON_VERSION%%/ref/dynamic-features.html
941
 share/doc/%%PYTHON_VERSION%%/ref/exceptions.html
942
 share/doc/%%PYTHON_VERSION%%/ref/exec.html
943
 share/doc/%%PYTHON_VERSION%%/ref/execframes.html
944
@@ -791,8 +976,11 @@
945
 share/doc/%%PYTHON_VERSION%%/ref/for.html
946
 share/doc/%%PYTHON_VERSION%%/ref/front.html
947
 share/doc/%%PYTHON_VERSION%%/ref/function.html
948
+share/doc/%%PYTHON_VERSION%%/ref/future-statements.html
949
+share/doc/%%PYTHON_VERSION%%/ref/futures.html
950
 share/doc/%%PYTHON_VERSION%%/ref/genindex.html
951
 share/doc/%%PYTHON_VERSION%%/ref/global.html
952
+share/doc/%%PYTHON_VERSION%%/ref/grammar.txt
953
 share/doc/%%PYTHON_VERSION%%/ref/id-classes.html
954
 share/doc/%%PYTHON_VERSION%%/ref/identifiers.html
955
 share/doc/%%PYTHON_VERSION%%/ref/if.html
956
@@ -811,6 +999,11 @@
957
 share/doc/%%PYTHON_VERSION%%/ref/lists.html
958
 share/doc/%%PYTHON_VERSION%%/ref/literals.html
959
 share/doc/%%PYTHON_VERSION%%/ref/logical.html
960
+share/doc/%%PYTHON_VERSION%%/ref/module-future.html
961
+share/doc/%%PYTHON_VERSION%%/ref/nested-scopes.html
962
+share/doc/%%PYTHON_VERSION%%/ref/node100.html
963
+share/doc/%%PYTHON_VERSION%%/ref/node98.html
964
+share/doc/%%PYTHON_VERSION%%/ref/node99.html
965
 share/doc/%%PYTHON_VERSION%%/ref/notation.html
966
 share/doc/%%PYTHON_VERSION%%/ref/numbers.html
967
 share/doc/%%PYTHON_VERSION%%/ref/numeric-types.html
968
@@ -845,6 +1038,7 @@
969
 share/doc/%%PYTHON_VERSION%%/ref/unary.html
970
 share/doc/%%PYTHON_VERSION%%/ref/while.html
971
 share/doc/%%PYTHON_VERSION%%/ref/whitespace.html
972
+share/doc/%%PYTHON_VERSION%%/ref/yield.html
973
 share/doc/%%PYTHON_VERSION%%/tut/about.html
974
 share/doc/%%PYTHON_VERSION%%/tut/index.html
975
 share/doc/%%PYTHON_VERSION%%/tut/node1.html
976
@@ -853,6 +1047,8 @@
977
 share/doc/%%PYTHON_VERSION%%/tut/node12.html
978
 share/doc/%%PYTHON_VERSION%%/tut/node13.html
979
 share/doc/%%PYTHON_VERSION%%/tut/node14.html
980
+share/doc/%%PYTHON_VERSION%%/tut/node15.html
981
+share/doc/%%PYTHON_VERSION%%/tut/node16.html
982
 share/doc/%%PYTHON_VERSION%%/tut/node2.html
983
 share/doc/%%PYTHON_VERSION%%/tut/node3.html
984
 share/doc/%%PYTHON_VERSION%%/tut/node4.html
985
@@ -863,6 +1059,24 @@
986
 share/doc/%%PYTHON_VERSION%%/tut/node9.html
987
 share/doc/%%PYTHON_VERSION%%/tut/tut.css
988
 share/doc/%%PYTHON_VERSION%%/tut/tut.html
989
+share/doc/%%PYTHON_VERSION%%/whatsnew/about.html
990
+share/doc/%%PYTHON_VERSION%%/whatsnew/contents.html
991
+share/doc/%%PYTHON_VERSION%%/whatsnew/index.html
992
+share/doc/%%PYTHON_VERSION%%/whatsnew/node10.html
993
+share/doc/%%PYTHON_VERSION%%/whatsnew/node11.html
994
+share/doc/%%PYTHON_VERSION%%/whatsnew/node12.html
995
+share/doc/%%PYTHON_VERSION%%/whatsnew/node13.html
996
+share/doc/%%PYTHON_VERSION%%/whatsnew/node2.html
997
+share/doc/%%PYTHON_VERSION%%/whatsnew/node4.html
998
+share/doc/%%PYTHON_VERSION%%/whatsnew/node5.html
999
+share/doc/%%PYTHON_VERSION%%/whatsnew/node6.html
1000
+share/doc/%%PYTHON_VERSION%%/whatsnew/node7.html
1001
+share/doc/%%PYTHON_VERSION%%/whatsnew/node8.html
1002
+share/doc/%%PYTHON_VERSION%%/whatsnew/node9.html
1003
+share/doc/%%PYTHON_VERSION%%/whatsnew/sect-rellinks.html
1004
+share/doc/%%PYTHON_VERSION%%/whatsnew/whatsnew22.css
1005
+share/doc/%%PYTHON_VERSION%%/whatsnew/whatsnew22.html
1006
+@dirrm share/doc/%%PYTHON_VERSION%%/whatsnew
1007
 @dirrm share/doc/%%PYTHON_VERSION%%/tut
1008
 @dirrm share/doc/%%PYTHON_VERSION%%/ref
1009
 @dirrm share/doc/%%PYTHON_VERSION%%/mac

Return to bug 36977