Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 11 Apr 2002 08:01:22 +0900 (KST)
From:      Hye-Shik Chang <perky@fallin.lv>
To:        FreeBSD-gnats-submit@FreeBSD.org
Cc:        tg@FreeBSD.org
Subject:   ports/36977: Update port: lang/python, lang/python21 and their subsidiaries
Message-ID:  <200204102301.g3AN1Mbe060047@akaraka.yonsei.ac.kr>

next in thread | raw e-mail | index | archive | help

>Number:         36977
>Category:       ports
>Synopsis:       Update port: lang/python, lang/python21 and their subsidiaries
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    freebsd-ports
>State:          open
>Quarter:        
>Keywords:       
>Date-Required:
>Class:          update
>Submitter-Id:   current-users
>Arrival-Date:   Wed Apr 10 16:10:01 PDT 2002
>Closed-Date:
>Last-Modified:
>Originator:     Hye-Shik Chang
>Release:        FreeBSD 5.0-CURRENT i386
>Organization:
Yonsei University
>Environment:
System: FreeBSD akaraka.yonsei.ac.kr 5.0-CURRENT FreeBSD 5.0-CURRENT #0: Wed Apr 10 04:16:59 KST 2002 root@akaraka.yonsei.ac.kr:/usr/src/sys/i386/compile/JOARRA i386

>Description:
lang/python to 2.2.1
lang/python21 to 2.1.3

and subsidaries:
 Mk/bsd.python.mk
 databases/py-gdbm
 math/py-mpz
 lang/python-doc-html
 x11-toolkits/py-tkinter

>How-To-Repeat:
>Fix:

--- Mk/bsd.python.mk.orig	Tue Apr  9 23:38:17 2002
+++ Mk/bsd.python.mk	Thu Apr 11 07:43:03 2002
@@ -79,7 +79,7 @@
 _PYTHON_VERSION!=	(python -c 'import sys; print sys.version[:3]') 2> /dev/null \
 					|| echo 2.2
 PYTHON_VERSION?=	python${_PYTHON_VERSION}
-_PYTHON_PORTVERSION=	2.2
+_PYTHON_PORTVERSION=	2.2.1
 PYTHON_PORTVERSION!=	(${PYTHON_VERSION} -c 'import string, sys; \
 								print string.split(sys.version)[0]') 2> /dev/null \
 					|| echo ${_PYTHON_PORTVERSION}
@@ -91,7 +91,7 @@
 
 PYTHON_DISTFILE=	Python-${_PYTHON_PORTVERSION}.tgz
 PYTHON_PORTSDIR=	${PORTSDIR}/lang/python
-PYTHON_REL=			220
+PYTHON_REL=			221
 PYTHON_SUFFIX=		22
 PYTHON_WRKSRC=		${WRKDIR}/Python-${_PYTHON_PORTVERSION}
 
@@ -100,11 +100,11 @@
 PYDISTUTILS=	${PYTHON_LIBDIR}/distutils/core.py:${PYTHON_PORTSDIR}
 PYXML=			${PYTHON_SITELIBDIR}/_xmlplus/__init__.py:${PORTSDIR}/textproc/py-xml
 
-PYTHON_DISTFILE=	Python-2.1.2.tgz
+PYTHON_DISTFILE=	Python-2.1.3.tgz
 PYTHON_PORTSDIR=	${PORTSDIR}/lang/python21
-PYTHON_REL=			212
+PYTHON_REL=			213
 PYTHON_SUFFIX=		21
-PYTHON_WRKSRC=		${WRKDIR}/Python-2.1.2
+PYTHON_WRKSRC=		${WRKDIR}/Python-2.1.3
 
 # Python-2.0
 .elif ${PYTHON_VERSION} == "python2.0"
diff -ruN lang/python.orig/Makefile python/Makefile
--- lang/python.orig/Makefile	Thu Apr  4 03:13:19 2002
+++ lang/python/Makefile	Thu Apr 11 06:14:22 2002
@@ -6,8 +6,7 @@
 #
 
 PORTNAME=	python
-PORTVERSION=	2.2
-PORTREVISION=	2
+PORTVERSION=	2.2.1
 CATEGORIES=	lang python ipv6
 MASTER_SITES=	http://www.python.org/ftp/python/${PORTVERSION}/ \
 		${MASTER_SITE_SOURCEFORGE} \
diff -ruN lang/python.orig/distinfo python/distinfo
--- lang/python.orig/distinfo	Mon Jan  7 22:26:47 2002
+++ lang/python/distinfo	Thu Apr 11 05:36:51 2002
@@ -1 +1 @@
-MD5 (python/Python-2.2.tgz) = 87febf0780c8e18454022d34b2ca70a0
+MD5 (python/Python-2.2.1.tgz) = e7012d611602b62e36073c2fd02396a3
diff -ruN lang/python.orig/files/patch-PyObject_DelItemString python/files/patch-PyObject_DelItemString
--- lang/python.orig/files/patch-PyObject_DelItemString	Wed Jan 16 21:22:20 2002
+++ lang/python/files/patch-PyObject_DelItemString	Thu Jan  1 09:00:00 1970
@@ -1,56 +0,0 @@
-Index: Include/abstract.h
-===================================================================
-RCS file: /home/python/cvs/python/dist/src/Include/abstract.h,v
-retrieving revision 2.42
-retrieving revision 2.43
-diff -u -r2.42 -r2.43
---- Include/abstract.h	28 Nov 2001 16:20:07 -0000	2.42
-+++ Include/abstract.h	5 Jan 2002 10:50:30 -0000	2.43
-@@ -445,6 +445,14 @@
- 	 statement: o[key]=v.
-        */
- 
-+     DL_IMPORT(int) PyObject_DelItemString(PyObject *o, char *key);
-+
-+       /*
-+         Remove the mapping for object, key, from the object *o.
-+         Returns -1 on failure.  This is equivalent to
-+         the Python statement: del o[key].
-+       */
-+
-      DL_IMPORT(int) PyObject_DelItem(PyObject *o, PyObject *key);
- 
-        /*
-Index: Objects/abstract.c
-===================================================================
-RCS file: /home/python/cvs/python/dist/src/Objects/abstract.c,v
-retrieving revision 2.93
-retrieving revision 2.94
-diff -u -r2.93 -r2.94
---- Objects/abstract.c	24 Nov 2001 18:24:47 -0000	2.93
-+++ Objects/abstract.c	5 Jan 2002 10:50:30 -0000	2.94
-@@ -174,6 +174,24 @@
- 	return -1;
- }
- 
-+int
-+PyObject_DelItemString(PyObject *o, char *key)
-+{
-+	PyObject *okey;
-+	int ret;
-+
-+	if (o == NULL || key == NULL) {
-+		null_error();
-+		return -1;
-+	}
-+	okey = PyString_FromString(key);
-+	if (okey == NULL)
-+		return -1;
-+	ret = PyObject_DelItem(o, okey);
-+	Py_DECREF(okey);
-+	return ret;
-+}
-+
- int PyObject_AsCharBuffer(PyObject *obj,
- 			  const char **buffer,
- 			  int *buffer_len)
diff -ruN lang/python.orig/pkg-plist python/pkg-plist
--- lang/python.orig/pkg-plist	Mon Jan  7 22:26:47 2002
+++ lang/python/pkg-plist	Thu Apr 11 06:37:52 2002
@@ -1400,6 +1400,7 @@
 lib/%%PYTHON_VERSION%%/test/data/msg_20.txt
 lib/%%PYTHON_VERSION%%/test/data/msg_21.txt
 lib/%%PYTHON_VERSION%%/test/data/msg_22.txt
+lib/%%PYTHON_VERSION%%/test/data/msg_23.txt
 lib/%%PYTHON_VERSION%%/test/double_const.py
 lib/%%PYTHON_VERSION%%/test/double_const.pyc
 lib/%%PYTHON_VERSION%%/test/double_const.pyo
@@ -1827,6 +1828,9 @@
 lib/%%PYTHON_VERSION%%/test/test_mutants.py
 lib/%%PYTHON_VERSION%%/test/test_mutants.pyc
 lib/%%PYTHON_VERSION%%/test/test_mutants.pyo
+lib/%%PYTHON_VERSION%%/test/test_netrc.py
+lib/%%PYTHON_VERSION%%/test/test_netrc.pyc
+lib/%%PYTHON_VERSION%%/test/test_netrc.pyo
 lib/%%PYTHON_VERSION%%/test/test_new.py
 lib/%%PYTHON_VERSION%%/test/test_new.pyc
 lib/%%PYTHON_VERSION%%/test/test_new.pyo
@@ -2232,10 +2236,6 @@
 %%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/embed/demo.c
 %%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/embed/importexc.c
 %%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/embed/loop.c
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/extend/README
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/extend/make_clean
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/extend/make_shared
-%%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/extend/make_static
 %%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/imputil/importers.py
 %%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/md5test/README
 %%PORTDOCS%%share/examples/%%PYTHON_VERSION%%/md5test/foo
@@ -2560,7 +2560,6 @@
 %%PORTDOCS%%@dirrm share/examples/%%PYTHON_VERSION%%/metaclasses
 %%PORTDOCS%%@dirrm share/examples/%%PYTHON_VERSION%%/md5test
 %%PORTDOCS%%@dirrm share/examples/%%PYTHON_VERSION%%/imputil
-%%PORTDOCS%%@dirrm share/examples/%%PYTHON_VERSION%%/extend
 %%PORTDOCS%%@dirrm share/examples/%%PYTHON_VERSION%%/embed
 %%PORTDOCS%%@dirrm share/examples/%%PYTHON_VERSION%%/curses
 %%PORTDOCS%%@dirrm share/examples/%%PYTHON_VERSION%%/comparisons
diff -ruN lang/python21.orig/Makefile python21/Makefile
--- lang/python21.orig/Makefile	Thu Apr  4 03:13:19 2002
+++ lang/python21/Makefile	Tue Apr  9 23:37:48 2002
@@ -6,7 +6,7 @@
 #
 
 PORTNAME=	python
-PORTVERSION=	2.1.2
+PORTVERSION=	2.1.3
 CATEGORIES=	lang python
 MASTER_SITES=	http://www.python.org/ftp/python/${PORTVERSION}/ \
 		${MASTER_SITE_SOURCEFORGE} \
diff -ruN lang/python21.orig/distinfo python21/distinfo
--- lang/python21.orig/distinfo	Tue Jan 22 21:53:28 2002
+++ lang/python21/distinfo	Thu Apr 11 06:59:05 2002
@@ -1 +1 @@
-MD5 (python/Python-2.1.2.tgz) = 4af22bded23a55f907365ed7610de8c9
+MD5 (python/Python-2.1.3.tgz) = a8b04cdc822a6fc833ed9b99c7fba589
diff -ruN lang/python21.orig/pkg-plist python21/pkg-plist
--- lang/python21.orig/pkg-plist	Tue Jan 22 21:53:28 2002
+++ lang/python21/pkg-plist	Thu Apr 11 07:07:57 2002
@@ -1349,6 +1349,7 @@
 lib/%%PYTHON_VERSION%%/test/output/test_pickle
 lib/%%PYTHON_VERSION%%/test/output/test_pkg
 lib/%%PYTHON_VERSION%%/test/output/test_poll
+lib/%%PYTHON_VERSION%%/test/output/test_popen
 lib/%%PYTHON_VERSION%%/test/output/test_popen2
 lib/%%PYTHON_VERSION%%/test/output/test_posixpath
 lib/%%PYTHON_VERSION%%/test/output/test_pow
@@ -1708,6 +1709,9 @@
 lib/%%PYTHON_VERSION%%/test/test_poll.py
 lib/%%PYTHON_VERSION%%/test/test_poll.pyc
 lib/%%PYTHON_VERSION%%/test/test_poll.pyo
+lib/%%PYTHON_VERSION%%/test/test_popen.py
+lib/%%PYTHON_VERSION%%/test/test_popen.pyc
+lib/%%PYTHON_VERSION%%/test/test_popen.pyo
 lib/%%PYTHON_VERSION%%/test/test_popen2.py
 lib/%%PYTHON_VERSION%%/test/test_popen2.pyc
 lib/%%PYTHON_VERSION%%/test/test_popen2.pyo
diff -ruN databases/py-gdbm.orig/distinfo py-gdbm/distinfo
--- databases/py-gdbm.orig/distinfo	Tue Jan 22 21:53:28 2002
+++ databases/py-gdbm/distinfo	Thu Apr 11 07:14:18 2002
@@ -6,3 +6,5 @@
 MD5 (python/Python-2.1.1.tgz) = eb34371c49b271abc74b42572883e1b4
 MD5 (python/Python-2.1.2.tgz) = 4af22bded23a55f907365ed7610de8c9
 MD5 (python/Python-2.2.tgz) = 87febf0780c8e18454022d34b2ca70a0
+MD5 (python/Python-2.1.3.tgz) = a8b04cdc822a6fc833ed9b99c7fba589
+MD5 (python/Python-2.2.1.tgz) = e7012d611602b62e36073c2fd02396a3
diff -ruN math/py-mpz.orig/distinfo py-mpz/distinfo
--- math/py-mpz.orig/distinfo	Thu Apr 11 07:17:01 2002
+++ math/py-mpz/distinfo	Thu Apr 11 07:16:37 2002
@@ -6,3 +6,5 @@
 MD5 (python/Python-2.1.1.tgz) = eb34371c49b271abc74b42572883e1b4
 MD5 (python/Python-2.1.2.tgz) = 4af22bded23a55f907365ed7610de8c9
 MD5 (python/Python-2.2.tgz) = 87febf0780c8e18454022d34b2ca70a0
+MD5 (python/Python-2.1.3.tgz) = a8b04cdc822a6fc833ed9b99c7fba589
+MD5 (python/Python-2.2.1.tgz) = e7012d611602b62e36073c2fd02396a3
diff -ruN x11-toolkits/py-tkinter.orig/distinfo py-tkinter/distinfo
--- x11-toolkits/py-tkinter.orig/distinfo	Tue Jan 22 21:53:28 2002
+++ x11-toolkits/py-tkinter/distinfo	Thu Apr 11 07:18:16 2002
@@ -6,3 +6,5 @@
 MD5 (python/Python-2.1.1.tgz) = eb34371c49b271abc74b42572883e1b4
 MD5 (python/Python-2.1.2.tgz) = 4af22bded23a55f907365ed7610de8c9
 MD5 (python/Python-2.2.tgz) = 87febf0780c8e18454022d34b2ca70a0
+MD5 (python/Python-2.1.3.tgz) = a8b04cdc822a6fc833ed9b99c7fba589
+MD5 (python/Python-2.2.1.tgz) = e7012d611602b62e36073c2fd02396a3
diff -ruN lang/python-doc-html.orig/distinfo python-doc-html/distinfo
--- lang/python-doc-html.orig/distinfo	Sat Mar 23 21:53:13 2002
+++ lang/python-doc-html/distinfo	Thu Apr 11 07:35:57 2002
@@ -23,8 +23,14 @@
 MD5 (python/pdf-letter-2.1.2.tar.bz2) = b13d162be1eb053c151ae1fe6463b570
 MD5 (python/postscript-a4-2.1.2.tar.bz2) = 36e2fc64401ced77410105a39eb1fad9
 MD5 (python/postscript-letter-2.1.2.tar.bz2) = 36f087c31e1c2bc917961f2d2926e4a7
+MD5 (python/html-2.1.3.tar.bz2) = 0165128306c6826882b553470f3ab8ce
 MD5 (python/html-2.2.tar.bz2) = 25fce6708cab45b1baf949f061af39f7
 MD5 (python/pdf-a4-2.2.tar.bz2) = b05d4a4e9d2d05e50fed57352605969c
 MD5 (python/pdf-letter-2.2.tar.bz2) = bac127302d5061e3250fd05362f5efc7
 MD5 (python/postscript-a4-2.2.tar.bz2) = 33cc669abfd2b9c12ed879e97d598932
 MD5 (python/postscript-letter-2.2.tar.bz2) = bfb4e3d960469d362ecfe3ecbcea40d9
+MD5 (python/html-2.2.1.tar.bz2) = 4c04d71113914c7e4619ff7dc732dbbd
+MD5 (python/pdf-a4-2.2.1.tar.bz2) = 16cb169523b71abb75bf14bf45c6256c
+MD5 (python/pdf-letter-2.2.1.tar.bz2) = afeaf84ecda1c6eb0069b8f43cdcefa7
+MD5 (python/postscript-a4-2.2.1.tar.bz2) = 84848cc9e6b9f1fd3d5dc3eeaa8c1b4f
+MD5 (python/postscript-letter-2.2.1.tar.bz2) = 11ca746d167a07bd77f123ca8ab9b754
diff -ruN lang/python-doc-html.orig/files/plist-html-2.1.3.diff python-doc-html/files/plist-html-2.1.3.diff
--- lang/python-doc-html.orig/files/plist-html-2.1.3.diff	Thu Jan  1 09:00:00 1970
+++ lang/python-doc-html/files/plist-html-2.1.3.diff	Thu Apr 11 07:41:39 2002
@@ -0,0 +1,597 @@
+--- pkg-plist_html	Wed May  2 21:01:35 2001
++++ pkg-plist_html_2.1.3	Thu Apr 11 07:41:22 2002
+@@ -1,6 +1,7 @@
+ share/doc/%%PYTHON_VERSION%%/about.html
+ share/doc/%%PYTHON_VERSION%%/acks.html
+ share/doc/%%PYTHON_VERSION%%/api/about.html
++share/doc/%%PYTHON_VERSION%%/api/abstract-buffer.html
+ share/doc/%%PYTHON_VERSION%%/api/abstract.html
+ share/doc/%%PYTHON_VERSION%%/api/api.css
+ share/doc/%%PYTHON_VERSION%%/api/api.html
+@@ -15,6 +16,7 @@
+ share/doc/%%PYTHON_VERSION%%/api/countingRefs.html
+ share/doc/%%PYTHON_VERSION%%/api/dictObjects.html
+ share/doc/%%PYTHON_VERSION%%/api/embedding.html
++share/doc/%%PYTHON_VERSION%%/api/example-cycle-support.html
+ share/doc/%%PYTHON_VERSION%%/api/exceptionHandling.html
+ share/doc/%%PYTHON_VERSION%%/api/exceptions.html
+ share/doc/%%PYTHON_VERSION%%/api/fileObjects.html
+@@ -26,6 +28,7 @@
+ share/doc/%%PYTHON_VERSION%%/api/includes.html
+ share/doc/%%PYTHON_VERSION%%/api/index.html
+ share/doc/%%PYTHON_VERSION%%/api/initialization.html
++share/doc/%%PYTHON_VERSION%%/api/instanceObjects.html
+ share/doc/%%PYTHON_VERSION%%/api/intObjects.html
+ share/doc/%%PYTHON_VERSION%%/api/intro.html
+ share/doc/%%PYTHON_VERSION%%/api/listObjects.html
+@@ -40,8 +43,11 @@
+ share/doc/%%PYTHON_VERSION%%/api/moduleObjects.html
+ share/doc/%%PYTHON_VERSION%%/api/newTypes.html
+ share/doc/%%PYTHON_VERSION%%/api/node15.html
+-share/doc/%%PYTHON_VERSION%%/api/node44.html
+-share/doc/%%PYTHON_VERSION%%/api/node45.html
++share/doc/%%PYTHON_VERSION%%/api/node35.html
++share/doc/%%PYTHON_VERSION%%/api/node36.html
++share/doc/%%PYTHON_VERSION%%/api/node67.html
++share/doc/%%PYTHON_VERSION%%/api/node68.html
++share/doc/%%PYTHON_VERSION%%/api/node69.html
+ share/doc/%%PYTHON_VERSION%%/api/noneObject.html
+ share/doc/%%PYTHON_VERSION%%/api/number-structs.html
+ share/doc/%%PYTHON_VERSION%%/api/number.html
+@@ -59,6 +65,7 @@
+ share/doc/%%PYTHON_VERSION%%/api/sequenceObjects.html
+ share/doc/%%PYTHON_VERSION%%/api/standardExceptions.html
+ share/doc/%%PYTHON_VERSION%%/api/stringObjects.html
++share/doc/%%PYTHON_VERSION%%/api/supporting-cycle-detection.html
+ share/doc/%%PYTHON_VERSION%%/api/threads.html
+ share/doc/%%PYTHON_VERSION%%/api/tupleObjects.html
+ share/doc/%%PYTHON_VERSION%%/api/typeObjects.html
+@@ -68,56 +75,15 @@
+ share/doc/%%PYTHON_VERSION%%/api/utilities.html
+ share/doc/%%PYTHON_VERSION%%/api/veryhigh.html
+ share/doc/%%PYTHON_VERSION%%/dist/about.html
+-share/doc/%%PYTHON_VERSION%%/dist/bdist-cmds.html
+-share/doc/%%PYTHON_VERSION%%/dist/build-clib-cmd.html
+-share/doc/%%PYTHON_VERSION%%/dist/build-cmd.html
+-share/doc/%%PYTHON_VERSION%%/dist/build-cmds.html
+-share/doc/%%PYTHON_VERSION%%/dist/build-ext-cmd.html
+-share/doc/%%PYTHON_VERSION%%/dist/build-py-cmd.html
+-share/doc/%%PYTHON_VERSION%%/dist/built-dist.html
+-share/doc/%%PYTHON_VERSION%%/dist/clean-cmd.html
+-share/doc/%%PYTHON_VERSION%%/dist/concepts.html
+-share/doc/%%PYTHON_VERSION%%/dist/contents.html
+-share/doc/%%PYTHON_VERSION%%/dist/creating-dumb.html
+-share/doc/%%PYTHON_VERSION%%/dist/creating-rpms.html
+ share/doc/%%PYTHON_VERSION%%/dist/creating-wininst.html
+-share/doc/%%PYTHON_VERSION%%/dist/describing-extensions.html
+ share/doc/%%PYTHON_VERSION%%/dist/dist.css
+ share/doc/%%PYTHON_VERSION%%/dist/dist.html
+-share/doc/%%PYTHON_VERSION%%/dist/distutils-term.html
+-share/doc/%%PYTHON_VERSION%%/dist/examples.html
+-share/doc/%%PYTHON_VERSION%%/dist/extend-existing.html
+-share/doc/%%PYTHON_VERSION%%/dist/extending.html
+ share/doc/%%PYTHON_VERSION%%/dist/index.html
+-share/doc/%%PYTHON_VERSION%%/dist/install-cmd.html
+-share/doc/%%PYTHON_VERSION%%/dist/install-data-cmd.html
+-share/doc/%%PYTHON_VERSION%%/dist/install-lib-cmd.html
+-share/doc/%%PYTHON_VERSION%%/dist/install-scripts-cmd.html
+ share/doc/%%PYTHON_VERSION%%/dist/intro.html
+-share/doc/%%PYTHON_VERSION%%/dist/listing-modules.html
+-share/doc/%%PYTHON_VERSION%%/dist/listing-packages.html
+-share/doc/%%PYTHON_VERSION%%/dist/manifest-options.html
+-share/doc/%%PYTHON_VERSION%%/dist/manifest.html
+-share/doc/%%PYTHON_VERSION%%/dist/multiple-ext.html
+-share/doc/%%PYTHON_VERSION%%/dist/new-commands.html
+-share/doc/%%PYTHON_VERSION%%/dist/node11.html
+-share/doc/%%PYTHON_VERSION%%/dist/node12.html
+-share/doc/%%PYTHON_VERSION%%/dist/node13.html
+-share/doc/%%PYTHON_VERSION%%/dist/node14.html
+-share/doc/%%PYTHON_VERSION%%/dist/node28.html
+-share/doc/%%PYTHON_VERSION%%/dist/node45.html
+-share/doc/%%PYTHON_VERSION%%/dist/node46.html
+-share/doc/%%PYTHON_VERSION%%/dist/node47.html
+-share/doc/%%PYTHON_VERSION%%/dist/node48.html
+-share/doc/%%PYTHON_VERSION%%/dist/pure-mod.html
+-share/doc/%%PYTHON_VERSION%%/dist/pure-pkg.html
+-share/doc/%%PYTHON_VERSION%%/dist/python-terms.html
+-share/doc/%%PYTHON_VERSION%%/dist/reference.html
+ share/doc/%%PYTHON_VERSION%%/dist/sdist-cmd.html
+ share/doc/%%PYTHON_VERSION%%/dist/setup-config.html
+ share/doc/%%PYTHON_VERSION%%/dist/setup-script.html
+ share/doc/%%PYTHON_VERSION%%/dist/simple-example.html
+-share/doc/%%PYTHON_VERSION%%/dist/single-ext.html
+ share/doc/%%PYTHON_VERSION%%/dist/source-dist.html
+ share/doc/%%PYTHON_VERSION%%/doc/about.html
+ share/doc/%%PYTHON_VERSION%%/doc/classes.html
+@@ -131,18 +97,20 @@
+ share/doc/%%PYTHON_VERSION%%/doc/info-units.html
+ share/doc/%%PYTHON_VERSION%%/doc/latex-primer.html
+ share/doc/%%PYTHON_VERSION%%/doc/meta-info.html
+-share/doc/%%PYTHON_VERSION%%/doc/node10.html
+-share/doc/%%PYTHON_VERSION%%/doc/node11.html
+ share/doc/%%PYTHON_VERSION%%/doc/node12.html
+ share/doc/%%PYTHON_VERSION%%/doc/node13.html
+ share/doc/%%PYTHON_VERSION%%/doc/node14.html
+-share/doc/%%PYTHON_VERSION%%/doc/node17.html
+-share/doc/%%PYTHON_VERSION%%/doc/node18.html
++share/doc/%%PYTHON_VERSION%%/doc/node15.html
++share/doc/%%PYTHON_VERSION%%/doc/node16.html
+ share/doc/%%PYTHON_VERSION%%/doc/node19.html
+ share/doc/%%PYTHON_VERSION%%/doc/node2.html
+ share/doc/%%PYTHON_VERSION%%/doc/node20.html
++share/doc/%%PYTHON_VERSION%%/doc/node21.html
++share/doc/%%PYTHON_VERSION%%/doc/node22.html
+ share/doc/%%PYTHON_VERSION%%/doc/node3.html
++share/doc/%%PYTHON_VERSION%%/doc/node5.html
+ share/doc/%%PYTHON_VERSION%%/doc/node6.html
++share/doc/%%PYTHON_VERSION%%/doc/node8.html
+ share/doc/%%PYTHON_VERSION%%/doc/preamble-info.html
+ share/doc/%%PYTHON_VERSION%%/doc/references.html
+ share/doc/%%PYTHON_VERSION%%/doc/structured.html
+@@ -156,7 +124,10 @@
+ share/doc/%%PYTHON_VERSION%%/ext/contents.html
+ share/doc/%%PYTHON_VERSION%%/ext/cplusplus.html
+ share/doc/%%PYTHON_VERSION%%/ext/custom-interps.html
++share/doc/%%PYTHON_VERSION%%/ext/defining-new-types.html
+ share/doc/%%PYTHON_VERSION%%/ext/distributing.html
++share/doc/%%PYTHON_VERSION%%/ext/dnt-basics.html
++share/doc/%%PYTHON_VERSION%%/ext/dnt-type-methods.html
+ share/doc/%%PYTHON_VERSION%%/ext/dynamic-linking.html
+ share/doc/%%PYTHON_VERSION%%/ext/embedding.html
+ share/doc/%%PYTHON_VERSION%%/ext/embeddingInCplusplus.html
+@@ -170,6 +141,9 @@
+ share/doc/%%PYTHON_VERSION%%/ext/methodTable.html
+ share/doc/%%PYTHON_VERSION%%/ext/module-defn-example.html
+ share/doc/%%PYTHON_VERSION%%/ext/module-defn-options.html
++share/doc/%%PYTHON_VERSION%%/ext/node36.html
++share/doc/%%PYTHON_VERSION%%/ext/node37.html
++share/doc/%%PYTHON_VERSION%%/ext/node38.html
+ share/doc/%%PYTHON_VERSION%%/ext/nullPointers.html
+ share/doc/%%PYTHON_VERSION%%/ext/ownershipRules.html
+ share/doc/%%PYTHON_VERSION%%/ext/parseTuple.html
+@@ -185,41 +159,21 @@
+ share/doc/%%PYTHON_VERSION%%/icons/blank.gif
+ share/doc/%%PYTHON_VERSION%%/icons/contents.gif
+ share/doc/%%PYTHON_VERSION%%/icons/index.gif
+-share/doc/%%PYTHON_VERSION%%/icons/labslogo.gif
+ share/doc/%%PYTHON_VERSION%%/icons/modules.gif
+ share/doc/%%PYTHON_VERSION%%/icons/next.gif
+-share/doc/%%PYTHON_VERSION%%/icons/offsite.gif
+ share/doc/%%PYTHON_VERSION%%/icons/previous.gif
+-share/doc/%%PYTHON_VERSION%%/icons/pythonlabs.gif
+ share/doc/%%PYTHON_VERSION%%/icons/up.gif
+ share/doc/%%PYTHON_VERSION%%/index.html
+ share/doc/%%PYTHON_VERSION%%/inst/about.html
+-share/doc/%%PYTHON_VERSION%%/inst/alt-install-home.html
+-share/doc/%%PYTHON_VERSION%%/inst/alt-install-macos.html
+-share/doc/%%PYTHON_VERSION%%/inst/alt-install-prefix.html
+ share/doc/%%PYTHON_VERSION%%/inst/alt-install-windows.html
+-share/doc/%%PYTHON_VERSION%%/inst/alt-install.html
+-share/doc/%%PYTHON_VERSION%%/inst/building-ext.html
+-share/doc/%%PYTHON_VERSION%%/inst/config-files.html
+-share/doc/%%PYTHON_VERSION%%/inst/contents.html
++share/doc/%%PYTHON_VERSION%%/inst/config-syntax.html
+ share/doc/%%PYTHON_VERSION%%/inst/custom-install.html
+-share/doc/%%PYTHON_VERSION%%/inst/how-build-works.html
+-share/doc/%%PYTHON_VERSION%%/inst/how-install-works.html
+ share/doc/%%PYTHON_VERSION%%/inst/index.html
+ share/doc/%%PYTHON_VERSION%%/inst/inst.css
+ share/doc/%%PYTHON_VERSION%%/inst/inst.html
+-share/doc/%%PYTHON_VERSION%%/inst/intro.html
+-share/doc/%%PYTHON_VERSION%%/inst/makefile-pre-in.html
+-share/doc/%%PYTHON_VERSION%%/inst/manual-install.html
+-share/doc/%%PYTHON_VERSION%%/inst/new-standard.html
+ share/doc/%%PYTHON_VERSION%%/inst/non-ms-compilers.html
+-share/doc/%%PYTHON_VERSION%%/inst/old-way.html
+-share/doc/%%PYTHON_VERSION%%/inst/platform-variations.html
+-share/doc/%%PYTHON_VERSION%%/inst/pre-distutils.html
+-share/doc/%%PYTHON_VERSION%%/inst/splitting-up.html
+ share/doc/%%PYTHON_VERSION%%/inst/standard-install.html
+ share/doc/%%PYTHON_VERSION%%/inst/trivial-install.html
+-share/doc/%%PYTHON_VERSION%%/inst/tweak-flags.html
+ share/doc/%%PYTHON_VERSION%%/lib/AST_Errors.html
+ share/doc/%%PYTHON_VERSION%%/lib/AST_Examples.html
+ share/doc/%%PYTHON_VERSION%%/lib/AST_Objects.html
+@@ -231,7 +185,6 @@
+ share/doc/%%PYTHON_VERSION%%/lib/Deterministic_Profiling.html
+ share/doc/%%PYTHON_VERSION%%/lib/FL_Functions.html
+ share/doc/%%PYTHON_VERSION%%/lib/Functions_in_cgi_module.html
+-share/doc/%%PYTHON_VERSION%%/lib/HTTP_Examples.html
+ share/doc/%%PYTHON_VERSION%%/lib/MimeWriter-objects.html
+ share/doc/%%PYTHON_VERSION%%/lib/MultiFile-objects.html
+ share/doc/%%PYTHON_VERSION%%/lib/PrettyPrinter_Objects.html
+@@ -249,6 +202,8 @@
+ share/doc/%%PYTHON_VERSION%%/lib/Wave-read-objects.html
+ share/doc/%%PYTHON_VERSION%%/lib/Wave-write-objects.html
+ share/doc/%%PYTHON_VERSION%%/lib/about.html
++share/doc/%%PYTHON_VERSION%%/lib/abstract-basic-auth-handler.html
++share/doc/%%PYTHON_VERSION%%/lib/abstract-digest-auth-handler.html
+ share/doc/%%PYTHON_VERSION%%/lib/addresslist-objects.html
+ share/doc/%%PYTHON_VERSION%%/lib/al-config-objects.html
+ share/doc/%%PYTHON_VERSION%%/lib/al-port-objects.html
+@@ -260,6 +215,7 @@
+ share/doc/%%PYTHON_VERSION%%/lib/au-read-objects.html
+ share/doc/%%PYTHON_VERSION%%/lib/au-write-objects.html
+ share/doc/%%PYTHON_VERSION%%/lib/audio-device-objects.html
++share/doc/%%PYTHON_VERSION%%/lib/base-handler-objects.html
+ share/doc/%%PYTHON_VERSION%%/lib/binhex-notes.html
+ share/doc/%%PYTHON_VERSION%%/lib/bisect-example.html
+ share/doc/%%PYTHON_VERSION%%/lib/bitstring-ops.html
+@@ -274,6 +230,7 @@
+ share/doc/%%PYTHON_VERSION%%/lib/built-in-funcs.html
+ share/doc/%%PYTHON_VERSION%%/lib/builtin.html
+ share/doc/%%PYTHON_VERSION%%/lib/bytecodes.html
++share/doc/%%PYTHON_VERSION%%/lib/cacheftp-handler-objects.html
+ share/doc/%%PYTHON_VERSION%%/lib/cd-parser-objects.html
+ share/doc/%%PYTHON_VERSION%%/lib/cgi-intro.html
+ share/doc/%%PYTHON_VERSION%%/lib/codec-objects.html
+@@ -287,38 +244,77 @@
+ share/doc/%%PYTHON_VERSION%%/lib/cookie-objects.html
+ share/doc/%%PYTHON_VERSION%%/lib/crypto.html
+ share/doc/%%PYTHON_VERSION%%/lib/curses-functions.html
++share/doc/%%PYTHON_VERSION%%/lib/curses-panel-objects.html
+ share/doc/%%PYTHON_VERSION%%/lib/curses-textpad-objects.html
+ share/doc/%%PYTHON_VERSION%%/lib/curses-window-objects.html
++share/doc/%%PYTHON_VERSION%%/lib/cursespanel-functions.html
+ share/doc/%%PYTHON_VERSION%%/lib/dbhash-objects.html
+ share/doc/%%PYTHON_VERSION%%/lib/debugger-commands.html
++share/doc/%%PYTHON_VERSION%%/lib/difflib-examples.html
+ share/doc/%%PYTHON_VERSION%%/lib/dircmp-objects.html
+ share/doc/%%PYTHON_VERSION%%/lib/dl-objects.html
++share/doc/%%PYTHON_VERSION%%/lib/dom-accessor-methods.html
++share/doc/%%PYTHON_VERSION%%/lib/dom-attr-objects.html
++share/doc/%%PYTHON_VERSION%%/lib/dom-attributelist-objects.html
++share/doc/%%PYTHON_VERSION%%/lib/dom-comment-objects.html
++share/doc/%%PYTHON_VERSION%%/lib/dom-conformance.html
++share/doc/%%PYTHON_VERSION%%/lib/dom-document-objects.html
++share/doc/%%PYTHON_VERSION%%/lib/dom-documenttype-objects.html
++share/doc/%%PYTHON_VERSION%%/lib/dom-element-objects.html
++share/doc/%%PYTHON_VERSION%%/lib/dom-example.html
++share/doc/%%PYTHON_VERSION%%/lib/dom-exceptions.html
++share/doc/%%PYTHON_VERSION%%/lib/dom-implementation-objects.html
++share/doc/%%PYTHON_VERSION%%/lib/dom-node-objects.html
++share/doc/%%PYTHON_VERSION%%/lib/dom-nodelist-objects.html
++share/doc/%%PYTHON_VERSION%%/lib/dom-objects.html
++share/doc/%%PYTHON_VERSION%%/lib/dom-pi-objects.html
++share/doc/%%PYTHON_VERSION%%/lib/dom-text-objects.html
++share/doc/%%PYTHON_VERSION%%/lib/dom-type-mapping.html
++share/doc/%%PYTHON_VERSION%%/lib/domeventstream-objects.html
+ share/doc/%%PYTHON_VERSION%%/lib/dtd-handler-objects.html
+ share/doc/%%PYTHON_VERSION%%/lib/embedding-locale.html
+ share/doc/%%PYTHON_VERSION%%/lib/entity-resolver-objects.html
+ share/doc/%%PYTHON_VERSION%%/lib/event-objects.html
+ share/doc/%%PYTHON_VERSION%%/lib/examples-imp.html
++share/doc/%%PYTHON_VERSION%%/lib/expat-content-models.html
+ share/doc/%%PYTHON_VERSION%%/lib/expat-errors.html
+ share/doc/%%PYTHON_VERSION%%/lib/expat-example.html
++share/doc/%%PYTHON_VERSION%%/lib/expaterror-objects.html
++share/doc/%%PYTHON_VERSION%%/lib/file-handler-objects.html
+ share/doc/%%PYTHON_VERSION%%/lib/form-objects.html
+ share/doc/%%PYTHON_VERSION%%/lib/formatter-impls.html
+ share/doc/%%PYTHON_VERSION%%/lib/formatter-interface.html
+ share/doc/%%PYTHON_VERSION%%/lib/forms-objects.html
++share/doc/%%PYTHON_VERSION%%/lib/fpectl-example.html
+ share/doc/%%PYTHON_VERSION%%/lib/front.html
++share/doc/%%PYTHON_VERSION%%/lib/ftp-handler-objects.html
+ share/doc/%%PYTHON_VERSION%%/lib/ftp-objects.html
+ share/doc/%%PYTHON_VERSION%%/lib/genindex.html
++share/doc/%%PYTHON_VERSION%%/lib/gopher-handler.html
+ share/doc/%%PYTHON_VERSION%%/lib/handle-object.html
+ share/doc/%%PYTHON_VERSION%%/lib/html-parser-objects.html
++share/doc/%%PYTHON_VERSION%%/lib/http-basic-auth-handler.html
++share/doc/%%PYTHON_VERSION%%/lib/http-digest-auth-handler.html
++share/doc/%%PYTHON_VERSION%%/lib/http-handler-objects.html
++share/doc/%%PYTHON_VERSION%%/lib/http-password-mgr.html
++share/doc/%%PYTHON_VERSION%%/lib/http-redirect-handler.html
++share/doc/%%PYTHON_VERSION%%/lib/httplib-examples.html
++share/doc/%%PYTHON_VERSION%%/lib/https-handler-objects.html
+ share/doc/%%PYTHON_VERSION%%/lib/imap4-example.html
+ share/doc/%%PYTHON_VERSION%%/lib/imap4-objects.html
+ share/doc/%%PYTHON_VERSION%%/lib/img1.gif
+ share/doc/%%PYTHON_VERSION%%/lib/incremental-parser-objects.html
+ share/doc/%%PYTHON_VERSION%%/lib/index.html
+ share/doc/%%PYTHON_VERSION%%/lib/input-source-objects.html
++share/doc/%%PYTHON_VERSION%%/lib/inspect-classes-functions.html
++share/doc/%%PYTHON_VERSION%%/lib/inspect-source.html
++share/doc/%%PYTHON_VERSION%%/lib/inspect-stack.html
++share/doc/%%PYTHON_VERSION%%/lib/inspect-types.html
+ share/doc/%%PYTHON_VERSION%%/lib/internet.html
+ share/doc/%%PYTHON_VERSION%%/lib/interpreter-objects.html
+ share/doc/%%PYTHON_VERSION%%/lib/intro.html
+ share/doc/%%PYTHON_VERSION%%/lib/language.html
++share/doc/%%PYTHON_VERSION%%/lib/legacy-unit-tests.html
+ share/doc/%%PYTHON_VERSION%%/lib/lib.css
+ share/doc/%%PYTHON_VERSION%%/lib/lib.html
+ share/doc/%%PYTHON_VERSION%%/lib/locator-objects.html
+@@ -332,6 +328,7 @@
+ share/doc/%%PYTHON_VERSION%%/lib/mh-message-objects.html
+ share/doc/%%PYTHON_VERSION%%/lib/mh-objects.html
+ share/doc/%%PYTHON_VERSION%%/lib/mimetools-message-objects.html
++share/doc/%%PYTHON_VERSION%%/lib/minidom-and-dom.html
+ share/doc/%%PYTHON_VERSION%%/lib/misc.html
+ share/doc/%%PYTHON_VERSION%%/lib/mmedia.html
+ share/doc/%%PYTHON_VERSION%%/lib/modindex.html
+@@ -384,13 +381,16 @@
+ share/doc/%%PYTHON_VERSION%%/lib/module-crypt.html
+ share/doc/%%PYTHON_VERSION%%/lib/module-curses.ascii.html
+ share/doc/%%PYTHON_VERSION%%/lib/module-curses.html
++share/doc/%%PYTHON_VERSION%%/lib/module-curses.panel.html
+ share/doc/%%PYTHON_VERSION%%/lib/module-curses.textpad.html
+ share/doc/%%PYTHON_VERSION%%/lib/module-curses.wrapper.html
+ share/doc/%%PYTHON_VERSION%%/lib/module-dbhash.html
+ share/doc/%%PYTHON_VERSION%%/lib/module-dbm.html
++share/doc/%%PYTHON_VERSION%%/lib/module-difflib.html
+ share/doc/%%PYTHON_VERSION%%/lib/module-dircache.html
+ share/doc/%%PYTHON_VERSION%%/lib/module-dis.html
+ share/doc/%%PYTHON_VERSION%%/lib/module-dl.html
++share/doc/%%PYTHON_VERSION%%/lib/module-doctest.html
+ share/doc/%%PYTHON_VERSION%%/lib/module-dumbdbm.html
+ share/doc/%%PYTHON_VERSION%%/lib/module-errno.html
+ share/doc/%%PYTHON_VERSION%%/lib/module-exceptions.html
+@@ -403,6 +403,7 @@
+ share/doc/%%PYTHON_VERSION%%/lib/module-fm.html
+ share/doc/%%PYTHON_VERSION%%/lib/module-fnmatch.html
+ share/doc/%%PYTHON_VERSION%%/lib/module-formatter.html
++share/doc/%%PYTHON_VERSION%%/lib/module-fpectl.html
+ share/doc/%%PYTHON_VERSION%%/lib/module-fpformat.html
+ share/doc/%%PYTHON_VERSION%%/lib/module-ftplib.html
+ share/doc/%%PYTHON_VERSION%%/lib/module-gc.html
+@@ -424,6 +425,7 @@
+ share/doc/%%PYTHON_VERSION%%/lib/module-imgfile.html
+ share/doc/%%PYTHON_VERSION%%/lib/module-imghdr.html
+ share/doc/%%PYTHON_VERSION%%/lib/module-imp.html
++share/doc/%%PYTHON_VERSION%%/lib/module-inspect.html
+ share/doc/%%PYTHON_VERSION%%/lib/module-jpeg.html
+ share/doc/%%PYTHON_VERSION%%/lib/module-keyword.html
+ share/doc/%%PYTHON_VERSION%%/lib/module-linecache.html
+@@ -512,22 +514,30 @@
+ share/doc/%%PYTHON_VERSION%%/lib/module-tty.html
+ share/doc/%%PYTHON_VERSION%%/lib/module-types.html
+ share/doc/%%PYTHON_VERSION%%/lib/module-unicodedata.html
++share/doc/%%PYTHON_VERSION%%/lib/module-unittest.html
+ share/doc/%%PYTHON_VERSION%%/lib/module-urllib.html
++share/doc/%%PYTHON_VERSION%%/lib/module-urllib2.html
+ share/doc/%%PYTHON_VERSION%%/lib/module-urlparse.html
+ share/doc/%%PYTHON_VERSION%%/lib/module-user.html
+ share/doc/%%PYTHON_VERSION%%/lib/module-uu.html
++share/doc/%%PYTHON_VERSION%%/lib/module-warnings.html
+ share/doc/%%PYTHON_VERSION%%/lib/module-wave.html
++share/doc/%%PYTHON_VERSION%%/lib/module-weakref.html
+ share/doc/%%PYTHON_VERSION%%/lib/module-webbrowser.html
+ share/doc/%%PYTHON_VERSION%%/lib/module-whichdb.html
+ share/doc/%%PYTHON_VERSION%%/lib/module-whrandom.html
+ share/doc/%%PYTHON_VERSION%%/lib/module-winsound.html
+ share/doc/%%PYTHON_VERSION%%/lib/module-xdrlib.html
++share/doc/%%PYTHON_VERSION%%/lib/module-xml.dom.html
++share/doc/%%PYTHON_VERSION%%/lib/module-xml.dom.minidom.html
++share/doc/%%PYTHON_VERSION%%/lib/module-xml.dom.pulldom.html
+ share/doc/%%PYTHON_VERSION%%/lib/module-xml.parsers.expat.html
+ share/doc/%%PYTHON_VERSION%%/lib/module-xml.sax.handler.html
+ share/doc/%%PYTHON_VERSION%%/lib/module-xml.sax.html
+ share/doc/%%PYTHON_VERSION%%/lib/module-xml.sax.saxutils.html
+ share/doc/%%PYTHON_VERSION%%/lib/module-xml.sax.xmlreader.html
+ share/doc/%%PYTHON_VERSION%%/lib/module-xmllib.html
++share/doc/%%PYTHON_VERSION%%/lib/module-xreadlines.html
+ share/doc/%%PYTHON_VERSION%%/lib/module-zipfile.html
+ share/doc/%%PYTHON_VERSION%%/lib/module-zlib.html
+ share/doc/%%PYTHON_VERSION%%/lib/morsel-objects.html
+@@ -539,41 +549,55 @@
+ share/doc/%%PYTHON_VERSION%%/lib/netdata.html
+ share/doc/%%PYTHON_VERSION%%/lib/netrc-objects.html
+ share/doc/%%PYTHON_VERSION%%/lib/nntp-objects.html
+-share/doc/%%PYTHON_VERSION%%/lib/node128.html
+-share/doc/%%PYTHON_VERSION%%/lib/node141.html
+-share/doc/%%PYTHON_VERSION%%/lib/node144.html
+-share/doc/%%PYTHON_VERSION%%/lib/node145.html
+-share/doc/%%PYTHON_VERSION%%/lib/node146.html
+-share/doc/%%PYTHON_VERSION%%/lib/node147.html
+-share/doc/%%PYTHON_VERSION%%/lib/node148.html
+-share/doc/%%PYTHON_VERSION%%/lib/node149.html
+-share/doc/%%PYTHON_VERSION%%/lib/node150.html
+-share/doc/%%PYTHON_VERSION%%/lib/node151.html
+-share/doc/%%PYTHON_VERSION%%/lib/node152.html
+-share/doc/%%PYTHON_VERSION%%/lib/node153.html
+-share/doc/%%PYTHON_VERSION%%/lib/node154.html
+-share/doc/%%PYTHON_VERSION%%/lib/node155.html
+-share/doc/%%PYTHON_VERSION%%/lib/node215.html
+-share/doc/%%PYTHON_VERSION%%/lib/node216.html
+-share/doc/%%PYTHON_VERSION%%/lib/node222.html
+-share/doc/%%PYTHON_VERSION%%/lib/node241.html
+-share/doc/%%PYTHON_VERSION%%/lib/node243.html
+-share/doc/%%PYTHON_VERSION%%/lib/node244.html
+-share/doc/%%PYTHON_VERSION%%/lib/node245.html
+-share/doc/%%PYTHON_VERSION%%/lib/node246.html
+-share/doc/%%PYTHON_VERSION%%/lib/node247.html
+-share/doc/%%PYTHON_VERSION%%/lib/node252.html
+-share/doc/%%PYTHON_VERSION%%/lib/node366.html
+-share/doc/%%PYTHON_VERSION%%/lib/node376.html
+-share/doc/%%PYTHON_VERSION%%/lib/node377.html
+-share/doc/%%PYTHON_VERSION%%/lib/node413.html
+-share/doc/%%PYTHON_VERSION%%/lib/node422.html
+-share/doc/%%PYTHON_VERSION%%/lib/node423.html
+-share/doc/%%PYTHON_VERSION%%/lib/node424.html
+-share/doc/%%PYTHON_VERSION%%/lib/node425.html
+-share/doc/%%PYTHON_VERSION%%/lib/node427.html
+-share/doc/%%PYTHON_VERSION%%/lib/node80.html
++share/doc/%%PYTHON_VERSION%%/lib/node100.html
++share/doc/%%PYTHON_VERSION%%/lib/node109.html
++share/doc/%%PYTHON_VERSION%%/lib/node110.html
++share/doc/%%PYTHON_VERSION%%/lib/node111.html
++share/doc/%%PYTHON_VERSION%%/lib/node112.html
++share/doc/%%PYTHON_VERSION%%/lib/node113.html
++share/doc/%%PYTHON_VERSION%%/lib/node114.html
++share/doc/%%PYTHON_VERSION%%/lib/node115.html
++share/doc/%%PYTHON_VERSION%%/lib/node116.html
++share/doc/%%PYTHON_VERSION%%/lib/node167.html
++share/doc/%%PYTHON_VERSION%%/lib/node183.html
++share/doc/%%PYTHON_VERSION%%/lib/node186.html
++share/doc/%%PYTHON_VERSION%%/lib/node187.html
++share/doc/%%PYTHON_VERSION%%/lib/node188.html
++share/doc/%%PYTHON_VERSION%%/lib/node189.html
++share/doc/%%PYTHON_VERSION%%/lib/node190.html
++share/doc/%%PYTHON_VERSION%%/lib/node191.html
++share/doc/%%PYTHON_VERSION%%/lib/node192.html
++share/doc/%%PYTHON_VERSION%%/lib/node193.html
++share/doc/%%PYTHON_VERSION%%/lib/node194.html
++share/doc/%%PYTHON_VERSION%%/lib/node195.html
++share/doc/%%PYTHON_VERSION%%/lib/node196.html
++share/doc/%%PYTHON_VERSION%%/lib/node197.html
++share/doc/%%PYTHON_VERSION%%/lib/node255.html
++share/doc/%%PYTHON_VERSION%%/lib/node256.html
++share/doc/%%PYTHON_VERSION%%/lib/node262.html
++share/doc/%%PYTHON_VERSION%%/lib/node281.html
++share/doc/%%PYTHON_VERSION%%/lib/node283.html
++share/doc/%%PYTHON_VERSION%%/lib/node284.html
++share/doc/%%PYTHON_VERSION%%/lib/node285.html
++share/doc/%%PYTHON_VERSION%%/lib/node286.html
++share/doc/%%PYTHON_VERSION%%/lib/node287.html
++share/doc/%%PYTHON_VERSION%%/lib/node312.html
++share/doc/%%PYTHON_VERSION%%/lib/node392.html
++share/doc/%%PYTHON_VERSION%%/lib/node393.html
++share/doc/%%PYTHON_VERSION%%/lib/node40.html
++share/doc/%%PYTHON_VERSION%%/lib/node456.html
++share/doc/%%PYTHON_VERSION%%/lib/node466.html
++share/doc/%%PYTHON_VERSION%%/lib/node467.html
++share/doc/%%PYTHON_VERSION%%/lib/node503.html
++share/doc/%%PYTHON_VERSION%%/lib/node512.html
++share/doc/%%PYTHON_VERSION%%/lib/node513.html
++share/doc/%%PYTHON_VERSION%%/lib/node514.html
++share/doc/%%PYTHON_VERSION%%/lib/node515.html
++share/doc/%%PYTHON_VERSION%%/lib/node517.html
+ share/doc/%%PYTHON_VERSION%%/lib/obsolete-modules.html
++share/doc/%%PYTHON_VERSION%%/lib/opener-director-objects.html
++share/doc/%%PYTHON_VERSION%%/lib/operator-map.html
++share/doc/%%PYTHON_VERSION%%/lib/organizing-tests.html
+ share/doc/%%PYTHON_VERSION%%/lib/os-fd-ops.html
+ share/doc/%%PYTHON_VERSION%%/lib/os-file-dir.html
+ share/doc/%%PYTHON_VERSION%%/lib/os-newstreams.html
+@@ -595,6 +619,9 @@
+ share/doc/%%PYTHON_VERSION%%/lib/profile-old.html
+ share/doc/%%PYTHON_VERSION%%/lib/profile-stats.html
+ share/doc/%%PYTHON_VERSION%%/lib/profile.html
++share/doc/%%PYTHON_VERSION%%/lib/proxy-basic-auth-handler.html
++share/doc/%%PYTHON_VERSION%%/lib/proxy-digest-auth-handler.html
++share/doc/%%PYTHON_VERSION%%/lib/proxy-handler.html
+ share/doc/%%PYTHON_VERSION%%/lib/pyclbr-class-objects.html
+ share/doc/%%PYTHON_VERSION%%/lib/python.html
+ share/doc/%%PYTHON_VERSION%%/lib/pyzipfile-objects.html
+@@ -602,12 +629,16 @@
+ share/doc/%%PYTHON_VERSION%%/lib/re-syntax.html
+ share/doc/%%PYTHON_VERSION%%/lib/readline-example.html
+ share/doc/%%PYTHON_VERSION%%/lib/reporting-bugs.html
++share/doc/%%PYTHON_VERSION%%/lib/request-objects.html
+ share/doc/%%PYTHON_VERSION%%/lib/restricted.html
++share/doc/%%PYTHON_VERSION%%/lib/rexec-extension.html
++share/doc/%%PYTHON_VERSION%%/lib/rexec-objects.html
+ share/doc/%%PYTHON_VERSION%%/lib/rlock-objects.html
+-share/doc/%%PYTHON_VERSION%%/lib/rng-objects.html
++share/doc/%%PYTHON_VERSION%%/lib/sax-error-handler.html
+ share/doc/%%PYTHON_VERSION%%/lib/sax-exception-objects.html
+ share/doc/%%PYTHON_VERSION%%/lib/scheduler-objects.html
+ share/doc/%%PYTHON_VERSION%%/lib/semaphore-objects.html
++share/doc/%%PYTHON_VERSION%%/lib/sequence-matcher.html
+ share/doc/%%PYTHON_VERSION%%/lib/sgi.html
+ share/doc/%%PYTHON_VERSION%%/lib/shlex-objects.html
+ share/doc/%%PYTHON_VERSION%%/lib/shutil-example.html
+@@ -627,6 +658,10 @@
+ share/doc/%%PYTHON_VERSION%%/lib/telnet-objects.html
+ share/doc/%%PYTHON_VERSION%%/lib/template-objects.html
+ share/doc/%%PYTHON_VERSION%%/lib/termios_Example.html
++share/doc/%%PYTHON_VERSION%%/lib/testcase-objects.html
++share/doc/%%PYTHON_VERSION%%/lib/testloader-objects.html
++share/doc/%%PYTHON_VERSION%%/lib/testresult-objects.html
++share/doc/%%PYTHON_VERSION%%/lib/testsuite-objects.html
+ share/doc/%%PYTHON_VERSION%%/lib/thread-objects.html
+ share/doc/%%PYTHON_VERSION%%/lib/traceback-example.html
+ share/doc/%%PYTHON_VERSION%%/lib/truth.html
+@@ -644,14 +679,23 @@
+ share/doc/%%PYTHON_VERSION%%/lib/typesseq-xrange.html
+ share/doc/%%PYTHON_VERSION%%/lib/typesseq.html
+ share/doc/%%PYTHON_VERSION%%/lib/undoc.html
++share/doc/%%PYTHON_VERSION%%/lib/unittest-contents.html
+ share/doc/%%PYTHON_VERSION%%/lib/unix.html
++share/doc/%%PYTHON_VERSION%%/lib/unknown-handler-objects.html
+ share/doc/%%PYTHON_VERSION%%/lib/urlopener-objs.html
++share/doc/%%PYTHON_VERSION%%/lib/warning-categories.html
++share/doc/%%PYTHON_VERSION%%/lib/warning-filter.html
++share/doc/%%PYTHON_VERSION%%/lib/warning-functions.html
++share/doc/%%PYTHON_VERSION%%/lib/weakref-example.html
++share/doc/%%PYTHON_VERSION%%/lib/weakref-extension.html
++share/doc/%%PYTHON_VERSION%%/lib/weakref-objects.html
+ share/doc/%%PYTHON_VERSION%%/lib/writer-impls.html
+ share/doc/%%PYTHON_VERSION%%/lib/writer-interface.html
+ share/doc/%%PYTHON_VERSION%%/lib/xdr-exceptions.html
+ share/doc/%%PYTHON_VERSION%%/lib/xdr-packer-objects.html
+ share/doc/%%PYTHON_VERSION%%/lib/xdr-unpacker-objects.html
+ share/doc/%%PYTHON_VERSION%%/lib/xml-namespace.html
++share/doc/%%PYTHON_VERSION%%/lib/xmlparser-objects.html
+ share/doc/%%PYTHON_VERSION%%/lib/xmlreader-objects.html
+ share/doc/%%PYTHON_VERSION%%/lib/zipfile-objects.html
+ share/doc/%%PYTHON_VERSION%%/lib/zipinfo-objects.html
+@@ -686,6 +730,7 @@
+ share/doc/%%PYTHON_VERSION%%/mac/modindex.html
+ share/doc/%%PYTHON_VERSION%%/mac/module-AE.html
+ share/doc/%%PYTHON_VERSION%%/mac/module-Cm.html
++share/doc/%%PYTHON_VERSION%%/mac/module-ColorPicker.html
+ share/doc/%%PYTHON_VERSION%%/mac/module-Ctl.html
+ share/doc/%%PYTHON_VERSION%%/mac/module-Dlg.html
+ share/doc/%%PYTHON_VERSION%%/mac/module-EasyDialogs.html
+@@ -740,6 +785,9 @@
+ share/doc/%%PYTHON_VERSION%%/mac/node43.html
+ share/doc/%%PYTHON_VERSION%%/mac/node6.html
+ share/doc/%%PYTHON_VERSION%%/mac/node7.html
++share/doc/%%PYTHON_VERSION%%/mac/node90.html
++share/doc/%%PYTHON_VERSION%%/mac/node91.html
++share/doc/%%PYTHON_VERSION%%/mac/node92.html
+ share/doc/%%PYTHON_VERSION%%/mac/scripting-with-BBedit.html
+ share/doc/%%PYTHON_VERSION%%/mac/scrolledwindow-object.html
+ share/doc/%%PYTHON_VERSION%%/mac/search-path.html
+@@ -774,9 +822,11 @@
+ share/doc/%%PYTHON_VERSION%%/ref/conversions.html
+ share/doc/%%PYTHON_VERSION%%/ref/customization.html
+ share/doc/%%PYTHON_VERSION%%/ref/datamodel.html
++share/doc/%%PYTHON_VERSION%%/ref/defintions.html
+ share/doc/%%PYTHON_VERSION%%/ref/del.html
+ share/doc/%%PYTHON_VERSION%%/ref/delimiters.html
+ share/doc/%%PYTHON_VERSION%%/ref/dict.html
++share/doc/%%PYTHON_VERSION%%/ref/dynamic-features.html
+ share/doc/%%PYTHON_VERSION%%/ref/exceptions.html
+ share/doc/%%PYTHON_VERSION%%/ref/exec.html
+ share/doc/%%PYTHON_VERSION%%/ref/execframes.html
+@@ -791,6 +841,8 @@
+ share/doc/%%PYTHON_VERSION%%/ref/for.html
+ share/doc/%%PYTHON_VERSION%%/ref/front.html
+ share/doc/%%PYTHON_VERSION%%/ref/function.html
++share/doc/%%PYTHON_VERSION%%/ref/future-statements.html
++share/doc/%%PYTHON_VERSION%%/ref/futures.html
+ share/doc/%%PYTHON_VERSION%%/ref/genindex.html
+ share/doc/%%PYTHON_VERSION%%/ref/global.html
+ share/doc/%%PYTHON_VERSION%%/ref/id-classes.html
+@@ -811,6 +863,11 @@
+ share/doc/%%PYTHON_VERSION%%/ref/lists.html
+ share/doc/%%PYTHON_VERSION%%/ref/literals.html
+ share/doc/%%PYTHON_VERSION%%/ref/logical.html
++share/doc/%%PYTHON_VERSION%%/ref/module-future.html
++share/doc/%%PYTHON_VERSION%%/ref/nested-scopes.html
++share/doc/%%PYTHON_VERSION%%/ref/node100.html
++share/doc/%%PYTHON_VERSION%%/ref/node98.html
++share/doc/%%PYTHON_VERSION%%/ref/node99.html
+ share/doc/%%PYTHON_VERSION%%/ref/notation.html
+ share/doc/%%PYTHON_VERSION%%/ref/numbers.html
+ share/doc/%%PYTHON_VERSION%%/ref/numeric-types.html
+@@ -843,6 +900,7 @@
+ share/doc/%%PYTHON_VERSION%%/ref/try.html
+ share/doc/%%PYTHON_VERSION%%/ref/types.html
+ share/doc/%%PYTHON_VERSION%%/ref/unary.html
++share/doc/%%PYTHON_VERSION%%/ref/unicode.html
+ share/doc/%%PYTHON_VERSION%%/ref/while.html
+ share/doc/%%PYTHON_VERSION%%/ref/whitespace.html
+ share/doc/%%PYTHON_VERSION%%/tut/about.html
+@@ -853,6 +911,7 @@
+ share/doc/%%PYTHON_VERSION%%/tut/node12.html
+ share/doc/%%PYTHON_VERSION%%/tut/node13.html
+ share/doc/%%PYTHON_VERSION%%/tut/node14.html
++share/doc/%%PYTHON_VERSION%%/tut/node15.html
+ share/doc/%%PYTHON_VERSION%%/tut/node2.html
+ share/doc/%%PYTHON_VERSION%%/tut/node3.html
+ share/doc/%%PYTHON_VERSION%%/tut/node4.html
diff -ruN lang/python-doc-html.orig/files/plist-html-2.2.1.diff python-doc-html/files/plist-html-2.2.1.diff
--- lang/python-doc-html.orig/files/plist-html-2.2.1.diff	Thu Jan  1 09:00:00 1970
+++ lang/python-doc-html/files/plist-html-2.2.1.diff	Thu Apr 11 07:46:06 2002
@@ -0,0 +1,1009 @@
+--- pkg-plist_html	Wed May  2 21:01:35 2001
++++ pkg-plist_html_2.2.1	Thu Apr 11 07:45:36 2002
+@@ -1,20 +1,27 @@
+ share/doc/%%PYTHON_VERSION%%/about.html
+ share/doc/%%PYTHON_VERSION%%/acks.html
+ share/doc/%%PYTHON_VERSION%%/api/about.html
++share/doc/%%PYTHON_VERSION%%/api/abstract-buffer.html
+ share/doc/%%PYTHON_VERSION%%/api/abstract.html
++share/doc/%%PYTHON_VERSION%%/api/advanced-debugging.html
++share/doc/%%PYTHON_VERSION%%/api/allocating-objects.html
+ share/doc/%%PYTHON_VERSION%%/api/api.css
+ share/doc/%%PYTHON_VERSION%%/api/api.html
++share/doc/%%PYTHON_VERSION%%/api/arg-parsing.html
+ share/doc/%%PYTHON_VERSION%%/api/buffer-structs.html
+ share/doc/%%PYTHON_VERSION%%/api/bufferObjects.html
+ share/doc/%%PYTHON_VERSION%%/api/builtinCodecs.html
+ share/doc/%%PYTHON_VERSION%%/api/cObjects.html
++share/doc/%%PYTHON_VERSION%%/api/cell-objects.html
+ share/doc/%%PYTHON_VERSION%%/api/common-structs.html
+ share/doc/%%PYTHON_VERSION%%/api/complexObjects.html
+ share/doc/%%PYTHON_VERSION%%/api/concrete.html
+ share/doc/%%PYTHON_VERSION%%/api/contents.html
+ share/doc/%%PYTHON_VERSION%%/api/countingRefs.html
++share/doc/%%PYTHON_VERSION%%/api/descriptor-objects.html
+ share/doc/%%PYTHON_VERSION%%/api/dictObjects.html
+ share/doc/%%PYTHON_VERSION%%/api/embedding.html
++share/doc/%%PYTHON_VERSION%%/api/example-cycle-support.html
+ share/doc/%%PYTHON_VERSION%%/api/exceptionHandling.html
+ share/doc/%%PYTHON_VERSION%%/api/exceptions.html
+ share/doc/%%PYTHON_VERSION%%/api/fileObjects.html
+@@ -26,22 +33,30 @@
+ share/doc/%%PYTHON_VERSION%%/api/includes.html
+ share/doc/%%PYTHON_VERSION%%/api/index.html
+ share/doc/%%PYTHON_VERSION%%/api/initialization.html
++share/doc/%%PYTHON_VERSION%%/api/instanceObjects.html
+ share/doc/%%PYTHON_VERSION%%/api/intObjects.html
+ share/doc/%%PYTHON_VERSION%%/api/intro.html
++share/doc/%%PYTHON_VERSION%%/api/iterator-objects.html
++share/doc/%%PYTHON_VERSION%%/api/iterator.html
+ share/doc/%%PYTHON_VERSION%%/api/listObjects.html
+ share/doc/%%PYTHON_VERSION%%/api/longObjects.html
+ share/doc/%%PYTHON_VERSION%%/api/mapObjects.html
+ share/doc/%%PYTHON_VERSION%%/api/mapping-structs.html
+ share/doc/%%PYTHON_VERSION%%/api/mapping.html
++share/doc/%%PYTHON_VERSION%%/api/marshalling-utils.html
+ share/doc/%%PYTHON_VERSION%%/api/memory.html
+ share/doc/%%PYTHON_VERSION%%/api/memoryExamples.html
+ share/doc/%%PYTHON_VERSION%%/api/memoryInterface.html
+ share/doc/%%PYTHON_VERSION%%/api/memoryOverview.html
++share/doc/%%PYTHON_VERSION%%/api/method-objects.html
+ share/doc/%%PYTHON_VERSION%%/api/moduleObjects.html
+ share/doc/%%PYTHON_VERSION%%/api/newTypes.html
+ share/doc/%%PYTHON_VERSION%%/api/node15.html
+-share/doc/%%PYTHON_VERSION%%/api/node44.html
+-share/doc/%%PYTHON_VERSION%%/api/node45.html
++share/doc/%%PYTHON_VERSION%%/api/node38.html
++share/doc/%%PYTHON_VERSION%%/api/node39.html
++share/doc/%%PYTHON_VERSION%%/api/node80.html
++share/doc/%%PYTHON_VERSION%%/api/node81.html
++share/doc/%%PYTHON_VERSION%%/api/node82.html
+ share/doc/%%PYTHON_VERSION%%/api/noneObject.html
+ share/doc/%%PYTHON_VERSION%%/api/number-structs.html
+ share/doc/%%PYTHON_VERSION%%/api/number.html
+@@ -51,14 +66,18 @@
+ share/doc/%%PYTHON_VERSION%%/api/os.html
+ share/doc/%%PYTHON_VERSION%%/api/otherObjects.html
+ share/doc/%%PYTHON_VERSION%%/api/processControl.html
++share/doc/%%PYTHON_VERSION%%/api/profiling.html
+ share/doc/%%PYTHON_VERSION%%/api/refcountDetails.html
+ share/doc/%%PYTHON_VERSION%%/api/refcounts.html
+ share/doc/%%PYTHON_VERSION%%/api/reporting-bugs.html
+ share/doc/%%PYTHON_VERSION%%/api/sequence-structs.html
+ share/doc/%%PYTHON_VERSION%%/api/sequence.html
+ share/doc/%%PYTHON_VERSION%%/api/sequenceObjects.html
++share/doc/%%PYTHON_VERSION%%/api/slice-objects.html
+ share/doc/%%PYTHON_VERSION%%/api/standardExceptions.html
+ share/doc/%%PYTHON_VERSION%%/api/stringObjects.html
++share/doc/%%PYTHON_VERSION%%/api/supporting-cycle-detection.html
++share/doc/%%PYTHON_VERSION%%/api/supporting-iteration.html
+ share/doc/%%PYTHON_VERSION%%/api/threads.html
+ share/doc/%%PYTHON_VERSION%%/api/tupleObjects.html
+ share/doc/%%PYTHON_VERSION%%/api/typeObjects.html
+@@ -67,116 +86,96 @@
+ share/doc/%%PYTHON_VERSION%%/api/unicodeObjects.html
+ share/doc/%%PYTHON_VERSION%%/api/utilities.html
+ share/doc/%%PYTHON_VERSION%%/api/veryhigh.html
++share/doc/%%PYTHON_VERSION%%/api/weakref-objects.html
+ share/doc/%%PYTHON_VERSION%%/dist/about.html
+-share/doc/%%PYTHON_VERSION%%/dist/bdist-cmds.html
+-share/doc/%%PYTHON_VERSION%%/dist/build-clib-cmd.html
+-share/doc/%%PYTHON_VERSION%%/dist/build-cmd.html
+-share/doc/%%PYTHON_VERSION%%/dist/build-cmds.html
+-share/doc/%%PYTHON_VERSION%%/dist/build-ext-cmd.html
+-share/doc/%%PYTHON_VERSION%%/dist/build-py-cmd.html
+-share/doc/%%PYTHON_VERSION%%/dist/built-dist.html
+-share/doc/%%PYTHON_VERSION%%/dist/clean-cmd.html
+-share/doc/%%PYTHON_VERSION%%/dist/concepts.html
+-share/doc/%%PYTHON_VERSION%%/dist/contents.html
+-share/doc/%%PYTHON_VERSION%%/dist/creating-dumb.html
+-share/doc/%%PYTHON_VERSION%%/dist/creating-rpms.html
+ share/doc/%%PYTHON_VERSION%%/dist/creating-wininst.html
+-share/doc/%%PYTHON_VERSION%%/dist/describing-extensions.html
+ share/doc/%%PYTHON_VERSION%%/dist/dist.css
+ share/doc/%%PYTHON_VERSION%%/dist/dist.html
+-share/doc/%%PYTHON_VERSION%%/dist/distutils-term.html
+-share/doc/%%PYTHON_VERSION%%/dist/examples.html
+-share/doc/%%PYTHON_VERSION%%/dist/extend-existing.html
+-share/doc/%%PYTHON_VERSION%%/dist/extending.html
+ share/doc/%%PYTHON_VERSION%%/dist/index.html
+-share/doc/%%PYTHON_VERSION%%/dist/install-cmd.html
+-share/doc/%%PYTHON_VERSION%%/dist/install-data-cmd.html
+-share/doc/%%PYTHON_VERSION%%/dist/install-lib-cmd.html
+-share/doc/%%PYTHON_VERSION%%/dist/install-scripts-cmd.html
+ share/doc/%%PYTHON_VERSION%%/dist/intro.html
+-share/doc/%%PYTHON_VERSION%%/dist/listing-modules.html
+-share/doc/%%PYTHON_VERSION%%/dist/listing-packages.html
+-share/doc/%%PYTHON_VERSION%%/dist/manifest-options.html
+-share/doc/%%PYTHON_VERSION%%/dist/manifest.html
+-share/doc/%%PYTHON_VERSION%%/dist/multiple-ext.html
+-share/doc/%%PYTHON_VERSION%%/dist/new-commands.html
+-share/doc/%%PYTHON_VERSION%%/dist/node11.html
+-share/doc/%%PYTHON_VERSION%%/dist/node12.html
+-share/doc/%%PYTHON_VERSION%%/dist/node13.html
+-share/doc/%%PYTHON_VERSION%%/dist/node14.html
+-share/doc/%%PYTHON_VERSION%%/dist/node28.html
+-share/doc/%%PYTHON_VERSION%%/dist/node45.html
+-share/doc/%%PYTHON_VERSION%%/dist/node46.html
+-share/doc/%%PYTHON_VERSION%%/dist/node47.html
+-share/doc/%%PYTHON_VERSION%%/dist/node48.html
+-share/doc/%%PYTHON_VERSION%%/dist/pure-mod.html
+-share/doc/%%PYTHON_VERSION%%/dist/pure-pkg.html
+-share/doc/%%PYTHON_VERSION%%/dist/python-terms.html
+-share/doc/%%PYTHON_VERSION%%/dist/reference.html
++share/doc/%%PYTHON_VERSION%%/dist/module-distutils.sysconfig.html
+ share/doc/%%PYTHON_VERSION%%/dist/sdist-cmd.html
+ share/doc/%%PYTHON_VERSION%%/dist/setup-config.html
+ share/doc/%%PYTHON_VERSION%%/dist/setup-script.html
+ share/doc/%%PYTHON_VERSION%%/dist/simple-example.html
+-share/doc/%%PYTHON_VERSION%%/dist/single-ext.html
+ share/doc/%%PYTHON_VERSION%%/dist/source-dist.html
+ share/doc/%%PYTHON_VERSION%%/doc/about.html
+ share/doc/%%PYTHON_VERSION%%/doc/classes.html
+ share/doc/%%PYTHON_VERSION%%/doc/contents.html
++share/doc/%%PYTHON_VERSION%%/doc/directories.html
+ share/doc/%%PYTHON_VERSION%%/doc/discussion.html
+ share/doc/%%PYTHON_VERSION%%/doc/doc.css
+ share/doc/%%PYTHON_VERSION%%/doc/doc.html
+ share/doc/%%PYTHON_VERSION%%/doc/futures.html
++share/doc/%%PYTHON_VERSION%%/doc/grammar-displays.html
++share/doc/%%PYTHON_VERSION%%/doc/gui-markup.html
+ share/doc/%%PYTHON_VERSION%%/doc/index.html
+ share/doc/%%PYTHON_VERSION%%/doc/indexing.html
+ share/doc/%%PYTHON_VERSION%%/doc/info-units.html
++share/doc/%%PYTHON_VERSION%%/doc/inline-markup.html
++share/doc/%%PYTHON_VERSION%%/doc/intro.html
+ share/doc/%%PYTHON_VERSION%%/doc/latex-primer.html
++share/doc/%%PYTHON_VERSION%%/doc/latex-syntax.html
++share/doc/%%PYTHON_VERSION%%/doc/library-markup.html
+ share/doc/%%PYTHON_VERSION%%/doc/meta-info.html
+-share/doc/%%PYTHON_VERSION%%/doc/node10.html
+-share/doc/%%PYTHON_VERSION%%/doc/node11.html
+-share/doc/%%PYTHON_VERSION%%/doc/node12.html
+-share/doc/%%PYTHON_VERSION%%/doc/node13.html
+-share/doc/%%PYTHON_VERSION%%/doc/node14.html
+-share/doc/%%PYTHON_VERSION%%/doc/node17.html
+-share/doc/%%PYTHON_VERSION%%/doc/node18.html
+-share/doc/%%PYTHON_VERSION%%/doc/node19.html
+-share/doc/%%PYTHON_VERSION%%/doc/node2.html
+-share/doc/%%PYTHON_VERSION%%/doc/node20.html
+-share/doc/%%PYTHON_VERSION%%/doc/node3.html
++share/doc/%%PYTHON_VERSION%%/doc/misc-text-markup.html
++share/doc/%%PYTHON_VERSION%%/doc/module-markup.html
+ share/doc/%%PYTHON_VERSION%%/doc/node6.html
+ share/doc/%%PYTHON_VERSION%%/doc/preamble-info.html
+ share/doc/%%PYTHON_VERSION%%/doc/references.html
++share/doc/%%PYTHON_VERSION%%/doc/showing-examples.html
++share/doc/%%PYTHON_VERSION%%/doc/special-constructs.html
+ share/doc/%%PYTHON_VERSION%%/doc/structured.html
++share/doc/%%PYTHON_VERSION%%/doc/style-guide.html
++share/doc/%%PYTHON_VERSION%%/doc/table-markup.html
++share/doc/%%PYTHON_VERSION%%/doc/tools-external.html
++share/doc/%%PYTHON_VERSION%%/doc/tools-internal.html
++share/doc/%%PYTHON_VERSION%%/doc/tools.html
+ share/doc/%%PYTHON_VERSION%%/ext/about.html
+ share/doc/%%PYTHON_VERSION%%/ext/backToExample.html
+ share/doc/%%PYTHON_VERSION%%/ext/buildValue.html
+ share/doc/%%PYTHON_VERSION%%/ext/building-on-unix.html
+-share/doc/%%PYTHON_VERSION%%/ext/building-on-windows.html
+ share/doc/%%PYTHON_VERSION%%/ext/callingPython.html
+ share/doc/%%PYTHON_VERSION%%/ext/compilation.html
+ share/doc/%%PYTHON_VERSION%%/ext/contents.html
+ share/doc/%%PYTHON_VERSION%%/ext/cplusplus.html
+-share/doc/%%PYTHON_VERSION%%/ext/custom-interps.html
++share/doc/%%PYTHON_VERSION%%/ext/defining-new-types.html
+ share/doc/%%PYTHON_VERSION%%/ext/distributing.html
++share/doc/%%PYTHON_VERSION%%/ext/dnt-basics.html
++share/doc/%%PYTHON_VERSION%%/ext/dnt-type-methods.html
+ share/doc/%%PYTHON_VERSION%%/ext/dynamic-linking.html
+ share/doc/%%PYTHON_VERSION%%/ext/embedding.html
+ share/doc/%%PYTHON_VERSION%%/ext/embeddingInCplusplus.html
+ share/doc/%%PYTHON_VERSION%%/ext/errors.html
+ share/doc/%%PYTHON_VERSION%%/ext/ext.css
+ share/doc/%%PYTHON_VERSION%%/ext/ext.html
++share/doc/%%PYTHON_VERSION%%/ext/extending-with-embedding.html
+ share/doc/%%PYTHON_VERSION%%/ext/front.html
++share/doc/%%PYTHON_VERSION%%/ext/high-level-embedding.html
+ share/doc/%%PYTHON_VERSION%%/ext/index.html
+ share/doc/%%PYTHON_VERSION%%/ext/intro.html
+ share/doc/%%PYTHON_VERSION%%/ext/link-reqs.html
++share/doc/%%PYTHON_VERSION%%/ext/lower-level-embedding.html
+ share/doc/%%PYTHON_VERSION%%/ext/methodTable.html
+-share/doc/%%PYTHON_VERSION%%/ext/module-defn-example.html
+ share/doc/%%PYTHON_VERSION%%/ext/module-defn-options.html
++share/doc/%%PYTHON_VERSION%%/ext/node23.html
++share/doc/%%PYTHON_VERSION%%/ext/node24.html
++share/doc/%%PYTHON_VERSION%%/ext/node25.html
++share/doc/%%PYTHON_VERSION%%/ext/node26.html
++share/doc/%%PYTHON_VERSION%%/ext/node27.html
++share/doc/%%PYTHON_VERSION%%/ext/node28.html
++share/doc/%%PYTHON_VERSION%%/ext/node43.html
++share/doc/%%PYTHON_VERSION%%/ext/node44.html
++share/doc/%%PYTHON_VERSION%%/ext/node45.html
+ share/doc/%%PYTHON_VERSION%%/ext/nullPointers.html
+ share/doc/%%PYTHON_VERSION%%/ext/ownershipRules.html
+ share/doc/%%PYTHON_VERSION%%/ext/parseTuple.html
+ share/doc/%%PYTHON_VERSION%%/ext/parseTupleAndKeywords.html
++share/doc/%%PYTHON_VERSION%%/ext/pure-embedding.html
+ share/doc/%%PYTHON_VERSION%%/ext/refcounts.html
+ share/doc/%%PYTHON_VERSION%%/ext/refcountsInPython.html
+ share/doc/%%PYTHON_VERSION%%/ext/reporting-bugs.html
++share/doc/%%PYTHON_VERSION%%/ext/run-func.txt
+ share/doc/%%PYTHON_VERSION%%/ext/simpleExample.html
+ share/doc/%%PYTHON_VERSION%%/ext/thinIce.html
+ share/doc/%%PYTHON_VERSION%%/ext/using-cobjects.html
+@@ -185,70 +184,34 @@
+ share/doc/%%PYTHON_VERSION%%/icons/blank.gif
+ share/doc/%%PYTHON_VERSION%%/icons/contents.gif
+ share/doc/%%PYTHON_VERSION%%/icons/index.gif
+-share/doc/%%PYTHON_VERSION%%/icons/labslogo.gif
+ share/doc/%%PYTHON_VERSION%%/icons/modules.gif
+ share/doc/%%PYTHON_VERSION%%/icons/next.gif
+-share/doc/%%PYTHON_VERSION%%/icons/offsite.gif
+ share/doc/%%PYTHON_VERSION%%/icons/previous.gif
+-share/doc/%%PYTHON_VERSION%%/icons/pythonlabs.gif
+ share/doc/%%PYTHON_VERSION%%/icons/up.gif
+ share/doc/%%PYTHON_VERSION%%/index.html
+ share/doc/%%PYTHON_VERSION%%/inst/about.html
+-share/doc/%%PYTHON_VERSION%%/inst/alt-install-home.html
+-share/doc/%%PYTHON_VERSION%%/inst/alt-install-macos.html
+-share/doc/%%PYTHON_VERSION%%/inst/alt-install-prefix.html
+ share/doc/%%PYTHON_VERSION%%/inst/alt-install-windows.html
+-share/doc/%%PYTHON_VERSION%%/inst/alt-install.html
+-share/doc/%%PYTHON_VERSION%%/inst/building-ext.html
+-share/doc/%%PYTHON_VERSION%%/inst/config-files.html
+-share/doc/%%PYTHON_VERSION%%/inst/contents.html
++share/doc/%%PYTHON_VERSION%%/inst/config-syntax.html
+ share/doc/%%PYTHON_VERSION%%/inst/custom-install.html
+-share/doc/%%PYTHON_VERSION%%/inst/how-build-works.html
+-share/doc/%%PYTHON_VERSION%%/inst/how-install-works.html
+ share/doc/%%PYTHON_VERSION%%/inst/index.html
+ share/doc/%%PYTHON_VERSION%%/inst/inst.css
+ share/doc/%%PYTHON_VERSION%%/inst/inst.html
+-share/doc/%%PYTHON_VERSION%%/inst/intro.html
+-share/doc/%%PYTHON_VERSION%%/inst/makefile-pre-in.html
+-share/doc/%%PYTHON_VERSION%%/inst/manual-install.html
+-share/doc/%%PYTHON_VERSION%%/inst/new-standard.html
+ share/doc/%%PYTHON_VERSION%%/inst/non-ms-compilers.html
+-share/doc/%%PYTHON_VERSION%%/inst/old-way.html
+-share/doc/%%PYTHON_VERSION%%/inst/platform-variations.html
+-share/doc/%%PYTHON_VERSION%%/inst/pre-distutils.html
+-share/doc/%%PYTHON_VERSION%%/inst/splitting-up.html
+ share/doc/%%PYTHON_VERSION%%/inst/standard-install.html
+ share/doc/%%PYTHON_VERSION%%/inst/trivial-install.html
+-share/doc/%%PYTHON_VERSION%%/inst/tweak-flags.html
+-share/doc/%%PYTHON_VERSION%%/lib/AST_Errors.html
+-share/doc/%%PYTHON_VERSION%%/lib/AST_Examples.html
+-share/doc/%%PYTHON_VERSION%%/lib/AST_Objects.html
+ share/doc/%%PYTHON_VERSION%%/lib/Cmd-objects.html
+ share/doc/%%PYTHON_VERSION%%/lib/ConfigParser-objects.html
+-share/doc/%%PYTHON_VERSION%%/lib/Contents_of_Module_re.html
+-share/doc/%%PYTHON_VERSION%%/lib/Converting_ASTs.html
+-share/doc/%%PYTHON_VERSION%%/lib/Creating_ASTs.html
+-share/doc/%%PYTHON_VERSION%%/lib/Deterministic_Profiling.html
+-share/doc/%%PYTHON_VERSION%%/lib/FL_Functions.html
+-share/doc/%%PYTHON_VERSION%%/lib/Functions_in_cgi_module.html
+-share/doc/%%PYTHON_VERSION%%/lib/HTTP_Examples.html
+ share/doc/%%PYTHON_VERSION%%/lib/MimeWriter-objects.html
+ share/doc/%%PYTHON_VERSION%%/lib/MultiFile-objects.html
+-share/doc/%%PYTHON_VERSION%%/lib/PrettyPrinter_Objects.html
+-share/doc/%%PYTHON_VERSION%%/lib/Profiler_Changes.html
+-share/doc/%%PYTHON_VERSION%%/lib/Profiler_Extensions.html
+-share/doc/%%PYTHON_VERSION%%/lib/Profiler_Introduction.html
+-share/doc/%%PYTHON_VERSION%%/lib/Querying_ASTs.html
+ share/doc/%%PYTHON_VERSION%%/lib/QueueObjects.html
+ share/doc/%%PYTHON_VERSION%%/lib/Repr-objects.html
+ share/doc/%%PYTHON_VERSION%%/lib/SMTP-example.html
+ share/doc/%%PYTHON_VERSION%%/lib/SMTP-objects.html
+-share/doc/%%PYTHON_VERSION%%/lib/Signal_Example.html
+-share/doc/%%PYTHON_VERSION%%/lib/Urllib_Examples.html
+-share/doc/%%PYTHON_VERSION%%/lib/Using_the_cgi_module.html
+ share/doc/%%PYTHON_VERSION%%/lib/Wave-read-objects.html
+ share/doc/%%PYTHON_VERSION%%/lib/Wave-write-objects.html
+ share/doc/%%PYTHON_VERSION%%/lib/about.html
++share/doc/%%PYTHON_VERSION%%/lib/abstract-basic-auth-handler.html
++share/doc/%%PYTHON_VERSION%%/lib/abstract-digest-auth-handler.html
+ share/doc/%%PYTHON_VERSION%%/lib/addresslist-objects.html
+ share/doc/%%PYTHON_VERSION%%/lib/al-config-objects.html
+ share/doc/%%PYTHON_VERSION%%/lib/al-port-objects.html
+@@ -260,6 +223,8 @@
+ share/doc/%%PYTHON_VERSION%%/lib/au-read-objects.html
+ share/doc/%%PYTHON_VERSION%%/lib/au-write-objects.html
+ share/doc/%%PYTHON_VERSION%%/lib/audio-device-objects.html
++share/doc/%%PYTHON_VERSION%%/lib/base-handler-objects.html
++share/doc/%%PYTHON_VERSION%%/lib/binary-objects.html
+ share/doc/%%PYTHON_VERSION%%/lib/binhex-notes.html
+ share/doc/%%PYTHON_VERSION%%/lib/bisect-example.html
+ share/doc/%%PYTHON_VERSION%%/lib/bitstring-ops.html
+@@ -268,16 +233,20 @@
+ share/doc/%%PYTHON_VERSION%%/lib/bltin-file-objects.html
+ share/doc/%%PYTHON_VERSION%%/lib/bltin-null-object.html
+ share/doc/%%PYTHON_VERSION%%/lib/bltin-type-objects.html
++share/doc/%%PYTHON_VERSION%%/lib/boolean-objects.html
+ share/doc/%%PYTHON_VERSION%%/lib/boolean.html
+ share/doc/%%PYTHON_VERSION%%/lib/browser-controllers.html
+ share/doc/%%PYTHON_VERSION%%/lib/bsddb-objects.html
+ share/doc/%%PYTHON_VERSION%%/lib/built-in-funcs.html
+ share/doc/%%PYTHON_VERSION%%/lib/builtin.html
+ share/doc/%%PYTHON_VERSION%%/lib/bytecodes.html
++share/doc/%%PYTHON_VERSION%%/lib/cacheftp-handler-objects.html
+ share/doc/%%PYTHON_VERSION%%/lib/cd-parser-objects.html
+ share/doc/%%PYTHON_VERSION%%/lib/cgi-intro.html
++share/doc/%%PYTHON_VERSION%%/lib/cgi-security.html
+ share/doc/%%PYTHON_VERSION%%/lib/codec-objects.html
+ share/doc/%%PYTHON_VERSION%%/lib/comparisons.html
++share/doc/%%PYTHON_VERSION%%/lib/compiler.html
+ share/doc/%%PYTHON_VERSION%%/lib/completer-objects.html
+ share/doc/%%PYTHON_VERSION%%/lib/condition-objects.html
+ share/doc/%%PYTHON_VERSION%%/lib/console-objects.html
+@@ -287,38 +256,86 @@
+ share/doc/%%PYTHON_VERSION%%/lib/cookie-objects.html
+ share/doc/%%PYTHON_VERSION%%/lib/crypto.html
+ share/doc/%%PYTHON_VERSION%%/lib/curses-functions.html
++share/doc/%%PYTHON_VERSION%%/lib/curses-panel-objects.html
+ share/doc/%%PYTHON_VERSION%%/lib/curses-textpad-objects.html
+ share/doc/%%PYTHON_VERSION%%/lib/curses-window-objects.html
++share/doc/%%PYTHON_VERSION%%/lib/cursespanel-functions.html
++share/doc/%%PYTHON_VERSION%%/lib/datetime-objects.html
+ share/doc/%%PYTHON_VERSION%%/lib/dbhash-objects.html
+ share/doc/%%PYTHON_VERSION%%/lib/debugger-commands.html
++share/doc/%%PYTHON_VERSION%%/lib/debugger-hooks.html
++share/doc/%%PYTHON_VERSION%%/lib/differ-examples.html
++share/doc/%%PYTHON_VERSION%%/lib/differ-objects.html
+ share/doc/%%PYTHON_VERSION%%/lib/dircmp-objects.html
+ share/doc/%%PYTHON_VERSION%%/lib/dl-objects.html
++share/doc/%%PYTHON_VERSION%%/lib/dom-accessor-methods.html
++share/doc/%%PYTHON_VERSION%%/lib/dom-attr-objects.html
++share/doc/%%PYTHON_VERSION%%/lib/dom-attributelist-objects.html
++share/doc/%%PYTHON_VERSION%%/lib/dom-comment-objects.html
++share/doc/%%PYTHON_VERSION%%/lib/dom-conformance.html
++share/doc/%%PYTHON_VERSION%%/lib/dom-document-objects.html
++share/doc/%%PYTHON_VERSION%%/lib/dom-documenttype-objects.html
++share/doc/%%PYTHON_VERSION%%/lib/dom-element-objects.html
++share/doc/%%PYTHON_VERSION%%/lib/dom-example.html
++share/doc/%%PYTHON_VERSION%%/lib/dom-exceptions.html
++share/doc/%%PYTHON_VERSION%%/lib/dom-implementation-objects.html
++share/doc/%%PYTHON_VERSION%%/lib/dom-node-objects.html
++share/doc/%%PYTHON_VERSION%%/lib/dom-nodelist-objects.html
++share/doc/%%PYTHON_VERSION%%/lib/dom-objects.html
++share/doc/%%PYTHON_VERSION%%/lib/dom-pi-objects.html
++share/doc/%%PYTHON_VERSION%%/lib/dom-text-objects.html
++share/doc/%%PYTHON_VERSION%%/lib/dom-type-mapping.html
++share/doc/%%PYTHON_VERSION%%/lib/domeventstream-objects.html
+ share/doc/%%PYTHON_VERSION%%/lib/dtd-handler-objects.html
+ share/doc/%%PYTHON_VERSION%%/lib/embedding-locale.html
+ share/doc/%%PYTHON_VERSION%%/lib/entity-resolver-objects.html
+ share/doc/%%PYTHON_VERSION%%/lib/event-objects.html
+ share/doc/%%PYTHON_VERSION%%/lib/examples-imp.html
++share/doc/%%PYTHON_VERSION%%/lib/expat-content-models.html
+ share/doc/%%PYTHON_VERSION%%/lib/expat-errors.html
+ share/doc/%%PYTHON_VERSION%%/lib/expat-example.html
++share/doc/%%PYTHON_VERSION%%/lib/expaterror-objects.html
++share/doc/%%PYTHON_VERSION%%/lib/fault-objects.html
++share/doc/%%PYTHON_VERSION%%/lib/file-handler-objects.html
+ share/doc/%%PYTHON_VERSION%%/lib/form-objects.html
+ share/doc/%%PYTHON_VERSION%%/lib/formatter-impls.html
+ share/doc/%%PYTHON_VERSION%%/lib/formatter-interface.html
+ share/doc/%%PYTHON_VERSION%%/lib/forms-objects.html
++share/doc/%%PYTHON_VERSION%%/lib/fpectl-example.html
+ share/doc/%%PYTHON_VERSION%%/lib/front.html
++share/doc/%%PYTHON_VERSION%%/lib/ftp-handler-objects.html
+ share/doc/%%PYTHON_VERSION%%/lib/ftp-objects.html
+ share/doc/%%PYTHON_VERSION%%/lib/genindex.html
++share/doc/%%PYTHON_VERSION%%/lib/gopher-handler.html
+ share/doc/%%PYTHON_VERSION%%/lib/handle-object.html
+ share/doc/%%PYTHON_VERSION%%/lib/html-parser-objects.html
++share/doc/%%PYTHON_VERSION%%/lib/htmlparser-example.html
++share/doc/%%PYTHON_VERSION%%/lib/http-basic-auth-handler.html
++share/doc/%%PYTHON_VERSION%%/lib/http-digest-auth-handler.html
++share/doc/%%PYTHON_VERSION%%/lib/http-handler-objects.html
++share/doc/%%PYTHON_VERSION%%/lib/http-password-mgr.html
++share/doc/%%PYTHON_VERSION%%/lib/http-redirect-handler.html
++share/doc/%%PYTHON_VERSION%%/lib/httpconnection-objects.html
++share/doc/%%PYTHON_VERSION%%/lib/httplib-examples.html
++share/doc/%%PYTHON_VERSION%%/lib/httpresponse-objects.html
++share/doc/%%PYTHON_VERSION%%/lib/https-handler-objects.html
++share/doc/%%PYTHON_VERSION%%/lib/idle.html
+ share/doc/%%PYTHON_VERSION%%/lib/imap4-example.html
+ share/doc/%%PYTHON_VERSION%%/lib/imap4-objects.html
+ share/doc/%%PYTHON_VERSION%%/lib/img1.gif
++share/doc/%%PYTHON_VERSION%%/lib/img2.gif
+ share/doc/%%PYTHON_VERSION%%/lib/incremental-parser-objects.html
+ share/doc/%%PYTHON_VERSION%%/lib/index.html
+ share/doc/%%PYTHON_VERSION%%/lib/input-source-objects.html
++share/doc/%%PYTHON_VERSION%%/lib/inspect-classes-functions.html
++share/doc/%%PYTHON_VERSION%%/lib/inspect-source.html
++share/doc/%%PYTHON_VERSION%%/lib/inspect-stack.html
++share/doc/%%PYTHON_VERSION%%/lib/inspect-types.html
+ share/doc/%%PYTHON_VERSION%%/lib/internet.html
+ share/doc/%%PYTHON_VERSION%%/lib/interpreter-objects.html
+ share/doc/%%PYTHON_VERSION%%/lib/intro.html
+ share/doc/%%PYTHON_VERSION%%/lib/language.html
++share/doc/%%PYTHON_VERSION%%/lib/legacy-unit-tests.html
+ share/doc/%%PYTHON_VERSION%%/lib/lib.css
+ share/doc/%%PYTHON_VERSION%%/lib/lib.html
+ share/doc/%%PYTHON_VERSION%%/lib/locator-objects.html
+@@ -332,6 +349,9 @@
+ share/doc/%%PYTHON_VERSION%%/lib/mh-message-objects.html
+ share/doc/%%PYTHON_VERSION%%/lib/mh-objects.html
+ share/doc/%%PYTHON_VERSION%%/lib/mimetools-message-objects.html
++share/doc/%%PYTHON_VERSION%%/lib/mimetypes-objects.html
++share/doc/%%PYTHON_VERSION%%/lib/minidom-and-dom.html
++share/doc/%%PYTHON_VERSION%%/lib/minidom-example.txt
+ share/doc/%%PYTHON_VERSION%%/lib/misc.html
+ share/doc/%%PYTHON_VERSION%%/lib/mmedia.html
+ share/doc/%%PYTHON_VERSION%%/lib/modindex.html
+@@ -342,12 +362,17 @@
+ share/doc/%%PYTHON_VERSION%%/lib/module-ConfigParser.html
+ share/doc/%%PYTHON_VERSION%%/lib/module-Cookie.html
+ share/doc/%%PYTHON_VERSION%%/lib/module-DEVICE.html
++share/doc/%%PYTHON_VERSION%%/lib/module-HTMLParser.html
+ share/doc/%%PYTHON_VERSION%%/lib/module-MimeWriter.html
+ share/doc/%%PYTHON_VERSION%%/lib/module-Queue.html
++share/doc/%%PYTHON_VERSION%%/lib/module-ScrolledText.html
+ share/doc/%%PYTHON_VERSION%%/lib/module-SimpleHTTPServer.html
++share/doc/%%PYTHON_VERSION%%/lib/module-SimpleXMLRPCServer.html
+ share/doc/%%PYTHON_VERSION%%/lib/module-SocketServer.html
+ share/doc/%%PYTHON_VERSION%%/lib/module-StringIO.html
+ share/doc/%%PYTHON_VERSION%%/lib/module-TERMIOSuppercase.html
++share/doc/%%PYTHON_VERSION%%/lib/module-Tix.html
++share/doc/%%PYTHON_VERSION%%/lib/module-Tkinter.html
+ share/doc/%%PYTHON_VERSION%%/lib/module-UserDict.html
+ share/doc/%%PYTHON_VERSION%%/lib/module-UserList.html
+ share/doc/%%PYTHON_VERSION%%/lib/module-UserString.html
+@@ -370,6 +395,7 @@
+ share/doc/%%PYTHON_VERSION%%/lib/module-calendar.html
+ share/doc/%%PYTHON_VERSION%%/lib/module-cd.html
+ share/doc/%%PYTHON_VERSION%%/lib/module-cgi.html
++share/doc/%%PYTHON_VERSION%%/lib/module-cgitb.html
+ share/doc/%%PYTHON_VERSION%%/lib/module-chunk.html
+ share/doc/%%PYTHON_VERSION%%/lib/module-cmath.html
+ share/doc/%%PYTHON_VERSION%%/lib/module-cmd.html
+@@ -379,19 +405,34 @@
+ share/doc/%%PYTHON_VERSION%%/lib/module-colorsys.html
+ share/doc/%%PYTHON_VERSION%%/lib/module-commands.html
+ share/doc/%%PYTHON_VERSION%%/lib/module-compileall.html
++share/doc/%%PYTHON_VERSION%%/lib/module-compiler.ast.html
++share/doc/%%PYTHON_VERSION%%/lib/module-compiler.html
++share/doc/%%PYTHON_VERSION%%/lib/module-compiler.visitor.html
+ share/doc/%%PYTHON_VERSION%%/lib/module-copy.html
+ share/doc/%%PYTHON_VERSION%%/lib/module-copyreg.html
+ share/doc/%%PYTHON_VERSION%%/lib/module-crypt.html
+ share/doc/%%PYTHON_VERSION%%/lib/module-curses.ascii.html
+ share/doc/%%PYTHON_VERSION%%/lib/module-curses.html
++share/doc/%%PYTHON_VERSION%%/lib/module-curses.panel.html
+ share/doc/%%PYTHON_VERSION%%/lib/module-curses.textpad.html
+ share/doc/%%PYTHON_VERSION%%/lib/module-curses.wrapper.html
+ share/doc/%%PYTHON_VERSION%%/lib/module-dbhash.html
+ share/doc/%%PYTHON_VERSION%%/lib/module-dbm.html
++share/doc/%%PYTHON_VERSION%%/lib/module-difflib.html
+ share/doc/%%PYTHON_VERSION%%/lib/module-dircache.html
+ share/doc/%%PYTHON_VERSION%%/lib/module-dis.html
++share/doc/%%PYTHON_VERSION%%/lib/module-distutils.html
+ share/doc/%%PYTHON_VERSION%%/lib/module-dl.html
++share/doc/%%PYTHON_VERSION%%/lib/module-doctest.html
+ share/doc/%%PYTHON_VERSION%%/lib/module-dumbdbm.html
++share/doc/%%PYTHON_VERSION%%/lib/module-email.Encoders.html
++share/doc/%%PYTHON_VERSION%%/lib/module-email.Errors.html
++share/doc/%%PYTHON_VERSION%%/lib/module-email.Generator.html
++share/doc/%%PYTHON_VERSION%%/lib/module-email.Iterators.html
++share/doc/%%PYTHON_VERSION%%/lib/module-email.Message.html
++share/doc/%%PYTHON_VERSION%%/lib/module-email.Parser.html
++share/doc/%%PYTHON_VERSION%%/lib/module-email.Utils.html
++share/doc/%%PYTHON_VERSION%%/lib/module-email.html
+ share/doc/%%PYTHON_VERSION%%/lib/module-errno.html
+ share/doc/%%PYTHON_VERSION%%/lib/module-exceptions.html
+ share/doc/%%PYTHON_VERSION%%/lib/module-fcntl.html
+@@ -403,6 +444,7 @@
+ share/doc/%%PYTHON_VERSION%%/lib/module-fm.html
+ share/doc/%%PYTHON_VERSION%%/lib/module-fnmatch.html
+ share/doc/%%PYTHON_VERSION%%/lib/module-formatter.html
++share/doc/%%PYTHON_VERSION%%/lib/module-fpectl.html
+ share/doc/%%PYTHON_VERSION%%/lib/module-fpformat.html
+ share/doc/%%PYTHON_VERSION%%/lib/module-ftplib.html
+ share/doc/%%PYTHON_VERSION%%/lib/module-gc.html
+@@ -416,6 +458,7 @@
+ share/doc/%%PYTHON_VERSION%%/lib/module-gopherlib.html
+ share/doc/%%PYTHON_VERSION%%/lib/module-grp.html
+ share/doc/%%PYTHON_VERSION%%/lib/module-gzip.html
++share/doc/%%PYTHON_VERSION%%/lib/module-hmac.html
+ share/doc/%%PYTHON_VERSION%%/lib/module-htmlentitydefs.html
+ share/doc/%%PYTHON_VERSION%%/lib/module-htmllib.html
+ share/doc/%%PYTHON_VERSION%%/lib/module-httplib.html
+@@ -424,6 +467,7 @@
+ share/doc/%%PYTHON_VERSION%%/lib/module-imgfile.html
+ share/doc/%%PYTHON_VERSION%%/lib/module-imghdr.html
+ share/doc/%%PYTHON_VERSION%%/lib/module-imp.html
++share/doc/%%PYTHON_VERSION%%/lib/module-inspect.html
+ share/doc/%%PYTHON_VERSION%%/lib/module-jpeg.html
+ share/doc/%%PYTHON_VERSION%%/lib/module-keyword.html
+ share/doc/%%PYTHON_VERSION%%/lib/module-linecache.html
+@@ -464,6 +508,7 @@
+ share/doc/%%PYTHON_VERSION%%/lib/module-pwd.html
+ share/doc/%%PYTHON_VERSION%%/lib/module-pyclbr.html
+ share/doc/%%PYTHON_VERSION%%/lib/module-pycompile.html
++share/doc/%%PYTHON_VERSION%%/lib/module-pydoc.html
+ share/doc/%%PYTHON_VERSION%%/lib/module-quopri.html
+ share/doc/%%PYTHON_VERSION%%/lib/module-random.html
+ share/doc/%%PYTHON_VERSION%%/lib/module-re.html
+@@ -510,24 +555,34 @@
+ share/doc/%%PYTHON_VERSION%%/lib/module-tokenize.html
+ share/doc/%%PYTHON_VERSION%%/lib/module-traceback.html
+ share/doc/%%PYTHON_VERSION%%/lib/module-tty.html
++share/doc/%%PYTHON_VERSION%%/lib/module-turtle.html
+ share/doc/%%PYTHON_VERSION%%/lib/module-types.html
+ share/doc/%%PYTHON_VERSION%%/lib/module-unicodedata.html
++share/doc/%%PYTHON_VERSION%%/lib/module-unittest.html
+ share/doc/%%PYTHON_VERSION%%/lib/module-urllib.html
++share/doc/%%PYTHON_VERSION%%/lib/module-urllib2.html
+ share/doc/%%PYTHON_VERSION%%/lib/module-urlparse.html
+ share/doc/%%PYTHON_VERSION%%/lib/module-user.html
+ share/doc/%%PYTHON_VERSION%%/lib/module-uu.html
++share/doc/%%PYTHON_VERSION%%/lib/module-warnings.html
+ share/doc/%%PYTHON_VERSION%%/lib/module-wave.html
++share/doc/%%PYTHON_VERSION%%/lib/module-weakref.html
+ share/doc/%%PYTHON_VERSION%%/lib/module-webbrowser.html
+ share/doc/%%PYTHON_VERSION%%/lib/module-whichdb.html
+ share/doc/%%PYTHON_VERSION%%/lib/module-whrandom.html
+ share/doc/%%PYTHON_VERSION%%/lib/module-winsound.html
+ share/doc/%%PYTHON_VERSION%%/lib/module-xdrlib.html
++share/doc/%%PYTHON_VERSION%%/lib/module-xml.dom.html
++share/doc/%%PYTHON_VERSION%%/lib/module-xml.dom.minidom.html
++share/doc/%%PYTHON_VERSION%%/lib/module-xml.dom.pulldom.html
+ share/doc/%%PYTHON_VERSION%%/lib/module-xml.parsers.expat.html
+ share/doc/%%PYTHON_VERSION%%/lib/module-xml.sax.handler.html
+ share/doc/%%PYTHON_VERSION%%/lib/module-xml.sax.html
+ share/doc/%%PYTHON_VERSION%%/lib/module-xml.sax.saxutils.html
+ share/doc/%%PYTHON_VERSION%%/lib/module-xml.sax.xmlreader.html
+ share/doc/%%PYTHON_VERSION%%/lib/module-xmllib.html
++share/doc/%%PYTHON_VERSION%%/lib/module-xmlrpclib.html
++share/doc/%%PYTHON_VERSION%%/lib/module-xreadlines.html
+ share/doc/%%PYTHON_VERSION%%/lib/module-zipfile.html
+ share/doc/%%PYTHON_VERSION%%/lib/module-zlib.html
+ share/doc/%%PYTHON_VERSION%%/lib/morsel-objects.html
+@@ -539,48 +594,139 @@
+ share/doc/%%PYTHON_VERSION%%/lib/netdata.html
+ share/doc/%%PYTHON_VERSION%%/lib/netrc-objects.html
+ share/doc/%%PYTHON_VERSION%%/lib/nntp-objects.html
++share/doc/%%PYTHON_VERSION%%/lib/node102.html
++share/doc/%%PYTHON_VERSION%%/lib/node113.html
++share/doc/%%PYTHON_VERSION%%/lib/node123.html
++share/doc/%%PYTHON_VERSION%%/lib/node124.html
++share/doc/%%PYTHON_VERSION%%/lib/node125.html
++share/doc/%%PYTHON_VERSION%%/lib/node126.html
++share/doc/%%PYTHON_VERSION%%/lib/node127.html
+ share/doc/%%PYTHON_VERSION%%/lib/node128.html
+-share/doc/%%PYTHON_VERSION%%/lib/node141.html
+-share/doc/%%PYTHON_VERSION%%/lib/node144.html
+-share/doc/%%PYTHON_VERSION%%/lib/node145.html
+-share/doc/%%PYTHON_VERSION%%/lib/node146.html
+-share/doc/%%PYTHON_VERSION%%/lib/node147.html
+-share/doc/%%PYTHON_VERSION%%/lib/node148.html
+-share/doc/%%PYTHON_VERSION%%/lib/node149.html
+-share/doc/%%PYTHON_VERSION%%/lib/node150.html
+-share/doc/%%PYTHON_VERSION%%/lib/node151.html
+-share/doc/%%PYTHON_VERSION%%/lib/node152.html
+-share/doc/%%PYTHON_VERSION%%/lib/node153.html
+-share/doc/%%PYTHON_VERSION%%/lib/node154.html
+-share/doc/%%PYTHON_VERSION%%/lib/node155.html
+-share/doc/%%PYTHON_VERSION%%/lib/node215.html
+-share/doc/%%PYTHON_VERSION%%/lib/node216.html
+-share/doc/%%PYTHON_VERSION%%/lib/node222.html
+-share/doc/%%PYTHON_VERSION%%/lib/node241.html
+-share/doc/%%PYTHON_VERSION%%/lib/node243.html
+-share/doc/%%PYTHON_VERSION%%/lib/node244.html
+-share/doc/%%PYTHON_VERSION%%/lib/node245.html
+-share/doc/%%PYTHON_VERSION%%/lib/node246.html
+-share/doc/%%PYTHON_VERSION%%/lib/node247.html
+-share/doc/%%PYTHON_VERSION%%/lib/node252.html
+-share/doc/%%PYTHON_VERSION%%/lib/node366.html
+-share/doc/%%PYTHON_VERSION%%/lib/node376.html
+-share/doc/%%PYTHON_VERSION%%/lib/node377.html
+-share/doc/%%PYTHON_VERSION%%/lib/node413.html
+-share/doc/%%PYTHON_VERSION%%/lib/node422.html
+-share/doc/%%PYTHON_VERSION%%/lib/node423.html
+-share/doc/%%PYTHON_VERSION%%/lib/node424.html
+-share/doc/%%PYTHON_VERSION%%/lib/node425.html
+-share/doc/%%PYTHON_VERSION%%/lib/node427.html
+-share/doc/%%PYTHON_VERSION%%/lib/node80.html
++share/doc/%%PYTHON_VERSION%%/lib/node129.html
++share/doc/%%PYTHON_VERSION%%/lib/node130.html
++share/doc/%%PYTHON_VERSION%%/lib/node181.html
++share/doc/%%PYTHON_VERSION%%/lib/node197.html
++share/doc/%%PYTHON_VERSION%%/lib/node200.html
++share/doc/%%PYTHON_VERSION%%/lib/node201.html
++share/doc/%%PYTHON_VERSION%%/lib/node202.html
++share/doc/%%PYTHON_VERSION%%/lib/node203.html
++share/doc/%%PYTHON_VERSION%%/lib/node204.html
++share/doc/%%PYTHON_VERSION%%/lib/node205.html
++share/doc/%%PYTHON_VERSION%%/lib/node206.html
++share/doc/%%PYTHON_VERSION%%/lib/node207.html
++share/doc/%%PYTHON_VERSION%%/lib/node208.html
++share/doc/%%PYTHON_VERSION%%/lib/node209.html
++share/doc/%%PYTHON_VERSION%%/lib/node210.html
++share/doc/%%PYTHON_VERSION%%/lib/node211.html
++share/doc/%%PYTHON_VERSION%%/lib/node214.html
++share/doc/%%PYTHON_VERSION%%/lib/node263.html
++share/doc/%%PYTHON_VERSION%%/lib/node272.html
++share/doc/%%PYTHON_VERSION%%/lib/node273.html
++share/doc/%%PYTHON_VERSION%%/lib/node281.html
++share/doc/%%PYTHON_VERSION%%/lib/node282.html
++share/doc/%%PYTHON_VERSION%%/lib/node284.html
++share/doc/%%PYTHON_VERSION%%/lib/node289.html
++share/doc/%%PYTHON_VERSION%%/lib/node295.html
++share/doc/%%PYTHON_VERSION%%/lib/node296.html
++share/doc/%%PYTHON_VERSION%%/lib/node297.html
++share/doc/%%PYTHON_VERSION%%/lib/node298.html
++share/doc/%%PYTHON_VERSION%%/lib/node300.html
++share/doc/%%PYTHON_VERSION%%/lib/node301.html
++share/doc/%%PYTHON_VERSION%%/lib/node302.html
++share/doc/%%PYTHON_VERSION%%/lib/node303.html
++share/doc/%%PYTHON_VERSION%%/lib/node307.html
++share/doc/%%PYTHON_VERSION%%/lib/node365.html
++share/doc/%%PYTHON_VERSION%%/lib/node380.html
++share/doc/%%PYTHON_VERSION%%/lib/node381.html
++share/doc/%%PYTHON_VERSION%%/lib/node383.html
++share/doc/%%PYTHON_VERSION%%/lib/node388.html
++share/doc/%%PYTHON_VERSION%%/lib/node389.html
++share/doc/%%PYTHON_VERSION%%/lib/node41.html
++share/doc/%%PYTHON_VERSION%%/lib/node437.html
++share/doc/%%PYTHON_VERSION%%/lib/node438.html
++share/doc/%%PYTHON_VERSION%%/lib/node500.html
++share/doc/%%PYTHON_VERSION%%/lib/node501.html
++share/doc/%%PYTHON_VERSION%%/lib/node502.html
++share/doc/%%PYTHON_VERSION%%/lib/node503.html
++share/doc/%%PYTHON_VERSION%%/lib/node504.html
++share/doc/%%PYTHON_VERSION%%/lib/node506.html
++share/doc/%%PYTHON_VERSION%%/lib/node507.html
++share/doc/%%PYTHON_VERSION%%/lib/node509.html
++share/doc/%%PYTHON_VERSION%%/lib/node510.html
++share/doc/%%PYTHON_VERSION%%/lib/node511.html
++share/doc/%%PYTHON_VERSION%%/lib/node512.html
++share/doc/%%PYTHON_VERSION%%/lib/node513.html
++share/doc/%%PYTHON_VERSION%%/lib/node514.html
++share/doc/%%PYTHON_VERSION%%/lib/node515.html
++share/doc/%%PYTHON_VERSION%%/lib/node517.html
++share/doc/%%PYTHON_VERSION%%/lib/node518.html
++share/doc/%%PYTHON_VERSION%%/lib/node519.html
++share/doc/%%PYTHON_VERSION%%/lib/node520.html
++share/doc/%%PYTHON_VERSION%%/lib/node521.html
++share/doc/%%PYTHON_VERSION%%/lib/node522.html
++share/doc/%%PYTHON_VERSION%%/lib/node523.html
++share/doc/%%PYTHON_VERSION%%/lib/node524.html
++share/doc/%%PYTHON_VERSION%%/lib/node525.html
++share/doc/%%PYTHON_VERSION%%/lib/node526.html
++share/doc/%%PYTHON_VERSION%%/lib/node527.html
++share/doc/%%PYTHON_VERSION%%/lib/node532.html
++share/doc/%%PYTHON_VERSION%%/lib/node533.html
++share/doc/%%PYTHON_VERSION%%/lib/node534.html
++share/doc/%%PYTHON_VERSION%%/lib/node535.html
++share/doc/%%PYTHON_VERSION%%/lib/node536.html
++share/doc/%%PYTHON_VERSION%%/lib/node537.html
++share/doc/%%PYTHON_VERSION%%/lib/node538.html
++share/doc/%%PYTHON_VERSION%%/lib/node539.html
++share/doc/%%PYTHON_VERSION%%/lib/node540.html
++share/doc/%%PYTHON_VERSION%%/lib/node541.html
++share/doc/%%PYTHON_VERSION%%/lib/node547.html
++share/doc/%%PYTHON_VERSION%%/lib/node551.html
++share/doc/%%PYTHON_VERSION%%/lib/node552.html
++share/doc/%%PYTHON_VERSION%%/lib/node553.html
++share/doc/%%PYTHON_VERSION%%/lib/node554.html
++share/doc/%%PYTHON_VERSION%%/lib/node555.html
++share/doc/%%PYTHON_VERSION%%/lib/node556.html
++share/doc/%%PYTHON_VERSION%%/lib/node557.html
++share/doc/%%PYTHON_VERSION%%/lib/node558.html
++share/doc/%%PYTHON_VERSION%%/lib/node573.html
++share/doc/%%PYTHON_VERSION%%/lib/node574.html
++share/doc/%%PYTHON_VERSION%%/lib/node576.html
++share/doc/%%PYTHON_VERSION%%/lib/node577.html
++share/doc/%%PYTHON_VERSION%%/lib/node579.html
++share/doc/%%PYTHON_VERSION%%/lib/node589.html
++share/doc/%%PYTHON_VERSION%%/lib/node59.html
++share/doc/%%PYTHON_VERSION%%/lib/node60.html
++share/doc/%%PYTHON_VERSION%%/lib/node604.html
++share/doc/%%PYTHON_VERSION%%/lib/node61.html
++share/doc/%%PYTHON_VERSION%%/lib/node613.html
++share/doc/%%PYTHON_VERSION%%/lib/node614.html
++share/doc/%%PYTHON_VERSION%%/lib/node615.html
++share/doc/%%PYTHON_VERSION%%/lib/node616.html
++share/doc/%%PYTHON_VERSION%%/lib/node618.html
++share/doc/%%PYTHON_VERSION%%/lib/node62.html
++share/doc/%%PYTHON_VERSION%%/lib/node620.html
++share/doc/%%PYTHON_VERSION%%/lib/node621.html
++share/doc/%%PYTHON_VERSION%%/lib/node622.html
++share/doc/%%PYTHON_VERSION%%/lib/node65.html
++share/doc/%%PYTHON_VERSION%%/lib/node66.html
++share/doc/%%PYTHON_VERSION%%/lib/node85.html
++share/doc/%%PYTHON_VERSION%%/lib/node99.html
+ share/doc/%%PYTHON_VERSION%%/lib/obsolete-modules.html
++share/doc/%%PYTHON_VERSION%%/lib/opener-director-objects.html
++share/doc/%%PYTHON_VERSION%%/lib/operator-map.html
++share/doc/%%PYTHON_VERSION%%/lib/organizing-tests.html
+ share/doc/%%PYTHON_VERSION%%/lib/os-fd-ops.html
+ share/doc/%%PYTHON_VERSION%%/lib/os-file-dir.html
+ share/doc/%%PYTHON_VERSION%%/lib/os-newstreams.html
+ share/doc/%%PYTHON_VERSION%%/lib/os-path.html
+ share/doc/%%PYTHON_VERSION%%/lib/os-process.html
+ share/doc/%%PYTHON_VERSION%%/lib/os-procinfo.html
++share/doc/%%PYTHON_VERSION%%/lib/other-gui-packages.html
++share/doc/%%PYTHON_VERSION%%/lib/pen-rawpen-objects.html
+ share/doc/%%PYTHON_VERSION%%/lib/pickle-example.html
++share/doc/%%PYTHON_VERSION%%/lib/pickle-inst.html
++share/doc/%%PYTHON_VERSION%%/lib/pickle-protocol.html
++share/doc/%%PYTHON_VERSION%%/lib/pickle-sec.html
+ share/doc/%%PYTHON_VERSION%%/lib/player-objects.html
+ share/doc/%%PYTHON_VERSION%%/lib/poll-objects.html
+ share/doc/%%PYTHON_VERSION%%/lib/pop3-example.html
+@@ -588,13 +734,15 @@
+ share/doc/%%PYTHON_VERSION%%/lib/popen3-objects.html
+ share/doc/%%PYTHON_VERSION%%/lib/posix-contents.html
+ share/doc/%%PYTHON_VERSION%%/lib/posix-large-files.html
+-share/doc/%%PYTHON_VERSION%%/lib/profile-HotProfile.html
+ share/doc/%%PYTHON_VERSION%%/lib/profile-calibration.html
+ share/doc/%%PYTHON_VERSION%%/lib/profile-instant.html
+ share/doc/%%PYTHON_VERSION%%/lib/profile-limits.html
+-share/doc/%%PYTHON_VERSION%%/lib/profile-old.html
+ share/doc/%%PYTHON_VERSION%%/lib/profile-stats.html
+ share/doc/%%PYTHON_VERSION%%/lib/profile.html
++share/doc/%%PYTHON_VERSION%%/lib/protocol-error-objects.html
++share/doc/%%PYTHON_VERSION%%/lib/proxy-basic-auth-handler.html
++share/doc/%%PYTHON_VERSION%%/lib/proxy-digest-auth-handler.html
++share/doc/%%PYTHON_VERSION%%/lib/proxy-handler.html
+ share/doc/%%PYTHON_VERSION%%/lib/pyclbr-class-objects.html
+ share/doc/%%PYTHON_VERSION%%/lib/python.html
+ share/doc/%%PYTHON_VERSION%%/lib/pyzipfile-objects.html
+@@ -602,19 +750,28 @@
+ share/doc/%%PYTHON_VERSION%%/lib/re-syntax.html
+ share/doc/%%PYTHON_VERSION%%/lib/readline-example.html
+ share/doc/%%PYTHON_VERSION%%/lib/reporting-bugs.html
++share/doc/%%PYTHON_VERSION%%/lib/request-objects.html
+ share/doc/%%PYTHON_VERSION%%/lib/restricted.html
++share/doc/%%PYTHON_VERSION%%/lib/rexec-extension.html
++share/doc/%%PYTHON_VERSION%%/lib/rexec-objects.html
+ share/doc/%%PYTHON_VERSION%%/lib/rlock-objects.html
+-share/doc/%%PYTHON_VERSION%%/lib/rng-objects.html
++share/doc/%%PYTHON_VERSION%%/lib/sax-error-handler.html
+ share/doc/%%PYTHON_VERSION%%/lib/sax-exception-objects.html
+ share/doc/%%PYTHON_VERSION%%/lib/scheduler-objects.html
++share/doc/%%PYTHON_VERSION%%/lib/semaphore-examples.html
+ share/doc/%%PYTHON_VERSION%%/lib/semaphore-objects.html
++share/doc/%%PYTHON_VERSION%%/lib/sequence-matcher.html
++share/doc/%%PYTHON_VERSION%%/lib/sequencematcher-examples.html
++share/doc/%%PYTHON_VERSION%%/lib/serverproxy-objects.html
+ share/doc/%%PYTHON_VERSION%%/lib/sgi.html
+ share/doc/%%PYTHON_VERSION%%/lib/shlex-objects.html
+ share/doc/%%PYTHON_VERSION%%/lib/shutil-example.html
++share/doc/%%PYTHON_VERSION%%/lib/simple-xmlrpc-servers.html
+ share/doc/%%PYTHON_VERSION%%/lib/socket-example.html
+ share/doc/%%PYTHON_VERSION%%/lib/socket-objects.html
+ share/doc/%%PYTHON_VERSION%%/lib/someos.html
+ share/doc/%%PYTHON_VERSION%%/lib/specialattrs.html
++share/doc/%%PYTHON_VERSION%%/lib/ssl-objects.html
+ share/doc/%%PYTHON_VERSION%%/lib/stream-reader-objects.html
+ share/doc/%%PYTHON_VERSION%%/lib/stream-reader-writer.html
+ share/doc/%%PYTHON_VERSION%%/lib/stream-recoder-objects.html
+@@ -626,10 +783,18 @@
+ share/doc/%%PYTHON_VERSION%%/lib/telnet-example.html
+ share/doc/%%PYTHON_VERSION%%/lib/telnet-objects.html
+ share/doc/%%PYTHON_VERSION%%/lib/template-objects.html
+-share/doc/%%PYTHON_VERSION%%/lib/termios_Example.html
++share/doc/%%PYTHON_VERSION%%/lib/testcase-objects.html
++share/doc/%%PYTHON_VERSION%%/lib/testloader-objects.html
++share/doc/%%PYTHON_VERSION%%/lib/testresult-objects.html
++share/doc/%%PYTHON_VERSION%%/lib/testsuite-objects.html
+ share/doc/%%PYTHON_VERSION%%/lib/thread-objects.html
++share/doc/%%PYTHON_VERSION%%/lib/timer-objects.html
++share/doc/%%PYTHON_VERSION%%/lib/tkinter-basic-mapping.html
++share/doc/%%PYTHON_VERSION%%/lib/tkinter-setting-options.html
++share/doc/%%PYTHON_VERSION%%/lib/tkinter.html
+ share/doc/%%PYTHON_VERSION%%/lib/traceback-example.html
+ share/doc/%%PYTHON_VERSION%%/lib/truth.html
++share/doc/%%PYTHON_VERSION%%/lib/typeiter.html
+ share/doc/%%PYTHON_VERSION%%/lib/types.html
+ share/doc/%%PYTHON_VERSION%%/lib/typesfunctions.html
+ share/doc/%%PYTHON_VERSION%%/lib/typesinternal.html
+@@ -644,15 +809,25 @@
+ share/doc/%%PYTHON_VERSION%%/lib/typesseq-xrange.html
+ share/doc/%%PYTHON_VERSION%%/lib/typesseq.html
+ share/doc/%%PYTHON_VERSION%%/lib/undoc.html
++share/doc/%%PYTHON_VERSION%%/lib/unittest-contents.html
+ share/doc/%%PYTHON_VERSION%%/lib/unix.html
++share/doc/%%PYTHON_VERSION%%/lib/unknown-handler-objects.html
+ share/doc/%%PYTHON_VERSION%%/lib/urlopener-objs.html
++share/doc/%%PYTHON_VERSION%%/lib/warning-categories.html
++share/doc/%%PYTHON_VERSION%%/lib/warning-filter.html
++share/doc/%%PYTHON_VERSION%%/lib/warning-functions.html
++share/doc/%%PYTHON_VERSION%%/lib/weakref-example.html
++share/doc/%%PYTHON_VERSION%%/lib/weakref-extension.html
++share/doc/%%PYTHON_VERSION%%/lib/weakref-objects.html
+ share/doc/%%PYTHON_VERSION%%/lib/writer-impls.html
+ share/doc/%%PYTHON_VERSION%%/lib/writer-interface.html
+ share/doc/%%PYTHON_VERSION%%/lib/xdr-exceptions.html
+ share/doc/%%PYTHON_VERSION%%/lib/xdr-packer-objects.html
+ share/doc/%%PYTHON_VERSION%%/lib/xdr-unpacker-objects.html
+ share/doc/%%PYTHON_VERSION%%/lib/xml-namespace.html
++share/doc/%%PYTHON_VERSION%%/lib/xmlparser-objects.html
+ share/doc/%%PYTHON_VERSION%%/lib/xmlreader-objects.html
++share/doc/%%PYTHON_VERSION%%/lib/xmlrpc-client-example.html
+ share/doc/%%PYTHON_VERSION%%/lib/zipfile-objects.html
+ share/doc/%%PYTHON_VERSION%%/lib/zipinfo-objects.html
+ share/doc/%%PYTHON_VERSION%%/mac/EditPythonPrefs.html
+@@ -672,7 +847,6 @@
+ share/doc/%%PYTHON_VERSION%%/mac/creator-code.html
+ share/doc/%%PYTHON_VERSION%%/mac/defaults.html
+ share/doc/%%PYTHON_VERSION%%/mac/dialogwindow-objects.html
+-share/doc/%%PYTHON_VERSION%%/mac/dnr-result-object.html
+ share/doc/%%PYTHON_VERSION%%/mac/finfo-objects.html
+ share/doc/%%PYTHON_VERSION%%/mac/front.html
+ share/doc/%%PYTHON_VERSION%%/mac/fsspec-objects.html
+@@ -684,29 +858,37 @@
+ share/doc/%%PYTHON_VERSION%%/mac/mac.html
+ share/doc/%%PYTHON_VERSION%%/mac/macpython-modules.html
+ share/doc/%%PYTHON_VERSION%%/mac/modindex.html
+-share/doc/%%PYTHON_VERSION%%/mac/module-AE.html
+-share/doc/%%PYTHON_VERSION%%/mac/module-Cm.html
+-share/doc/%%PYTHON_VERSION%%/mac/module-Ctl.html
+-share/doc/%%PYTHON_VERSION%%/mac/module-Dlg.html
++share/doc/%%PYTHON_VERSION%%/mac/module-Carbon.AE.html
++share/doc/%%PYTHON_VERSION%%/mac/module-Carbon.App.html
++share/doc/%%PYTHON_VERSION%%/mac/module-Carbon.CF.html
++share/doc/%%PYTHON_VERSION%%/mac/module-Carbon.Cm.html
++share/doc/%%PYTHON_VERSION%%/mac/module-Carbon.Ctl.html
++share/doc/%%PYTHON_VERSION%%/mac/module-Carbon.Dlg.html
++share/doc/%%PYTHON_VERSION%%/mac/module-Carbon.Evt.html
++share/doc/%%PYTHON_VERSION%%/mac/module-Carbon.Fm.html
++share/doc/%%PYTHON_VERSION%%/mac/module-Carbon.Help.html
++share/doc/%%PYTHON_VERSION%%/mac/module-Carbon.List.html
++share/doc/%%PYTHON_VERSION%%/mac/module-Carbon.Menu.html
++share/doc/%%PYTHON_VERSION%%/mac/module-Carbon.Mlte.html
++share/doc/%%PYTHON_VERSION%%/mac/module-Carbon.Qd.html
++share/doc/%%PYTHON_VERSION%%/mac/module-Carbon.Qdoffs.html
++share/doc/%%PYTHON_VERSION%%/mac/module-Carbon.Qt.html
++share/doc/%%PYTHON_VERSION%%/mac/module-Carbon.Res.html
++share/doc/%%PYTHON_VERSION%%/mac/module-Carbon.Scrap.html
++share/doc/%%PYTHON_VERSION%%/mac/module-Carbon.Snd.html
++share/doc/%%PYTHON_VERSION%%/mac/module-Carbon.TE.html
++share/doc/%%PYTHON_VERSION%%/mac/module-Carbon.Win.html
++share/doc/%%PYTHON_VERSION%%/mac/module-ColorPicker.html
+ share/doc/%%PYTHON_VERSION%%/mac/module-EasyDialogs.html
+-share/doc/%%PYTHON_VERSION%%/mac/module-Evt.html
+-share/doc/%%PYTHON_VERSION%%/mac/module-Fm.html
+ share/doc/%%PYTHON_VERSION%%/mac/module-FrameWork.html
+-share/doc/%%PYTHON_VERSION%%/mac/module-List.html
+ share/doc/%%PYTHON_VERSION%%/mac/module-MacOS.html
+-share/doc/%%PYTHON_VERSION%%/mac/module-Menu.html
+ share/doc/%%PYTHON_VERSION%%/mac/module-MiniAEFrame.html
++share/doc/%%PYTHON_VERSION%%/mac/module-Nac.html
+ share/doc/%%PYTHON_VERSION%%/mac/module-PixMapWrapper.html
+-share/doc/%%PYTHON_VERSION%%/mac/module-Qd.html
+-share/doc/%%PYTHON_VERSION%%/mac/module-Qt.html
+-share/doc/%%PYTHON_VERSION%%/mac/module-Res.html
+-share/doc/%%PYTHON_VERSION%%/mac/module-Scrap.html
+-share/doc/%%PYTHON_VERSION%%/mac/module-Snd.html
+-share/doc/%%PYTHON_VERSION%%/mac/module-TE.html
+ share/doc/%%PYTHON_VERSION%%/mac/module-W.html
+-share/doc/%%PYTHON_VERSION%%/mac/module-Win.html
+ share/doc/%%PYTHON_VERSION%%/mac/module-aepack.html
+ share/doc/%%PYTHON_VERSION%%/mac/module-aetypes.html
++share/doc/%%PYTHON_VERSION%%/mac/module-applesingle.html
+ share/doc/%%PYTHON_VERSION%%/mac/module-buildtools.html
+ share/doc/%%PYTHON_VERSION%%/mac/module-cfmfile.html
+ share/doc/%%PYTHON_VERSION%%/mac/module-ctb.html
+@@ -714,32 +896,33 @@
+ share/doc/%%PYTHON_VERSION%%/mac/module-ic.html
+ share/doc/%%PYTHON_VERSION%%/mac/module-icopen.html
+ share/doc/%%PYTHON_VERSION%%/mac/module-mac.html
+-share/doc/%%PYTHON_VERSION%%/mac/module-macdnr.html
+ share/doc/%%PYTHON_VERSION%%/mac/module-macerrors.html
+ share/doc/%%PYTHON_VERSION%%/mac/module-macfs.html
+ share/doc/%%PYTHON_VERSION%%/mac/module-macfsn.html
+ share/doc/%%PYTHON_VERSION%%/mac/module-macostools.html
+ share/doc/%%PYTHON_VERSION%%/mac/module-macpath.html
++share/doc/%%PYTHON_VERSION%%/mac/module-macresource.html
+ share/doc/%%PYTHON_VERSION%%/mac/module-macspeech.html
+-share/doc/%%PYTHON_VERSION%%/mac/module-mactcp.html
+ share/doc/%%PYTHON_VERSION%%/mac/module-mactty.html
++share/doc/%%PYTHON_VERSION%%/mac/module-mkcwproject.html
+ share/doc/%%PYTHON_VERSION%%/mac/module-nsremote.html
+ share/doc/%%PYTHON_VERSION%%/mac/module-preferences.html
+ share/doc/%%PYTHON_VERSION%%/mac/module-pyresource.html
+ share/doc/%%PYTHON_VERSION%%/mac/module-pythonprefs.html
+ share/doc/%%PYTHON_VERSION%%/mac/module-quietconsole.html
++share/doc/%%PYTHON_VERSION%%/mac/module-videoreader.html
+ share/doc/%%PYTHON_VERSION%%/mac/module-waste.html
+ share/doc/%%PYTHON_VERSION%%/mac/node10.html
+ share/doc/%%PYTHON_VERSION%%/mac/node11.html
+ share/doc/%%PYTHON_VERSION%%/mac/node12.html
+ share/doc/%%PYTHON_VERSION%%/mac/node15.html
+ share/doc/%%PYTHON_VERSION%%/mac/node23.html
+-share/doc/%%PYTHON_VERSION%%/mac/node36.html
+-share/doc/%%PYTHON_VERSION%%/mac/node41.html
+-share/doc/%%PYTHON_VERSION%%/mac/node42.html
+-share/doc/%%PYTHON_VERSION%%/mac/node43.html
++share/doc/%%PYTHON_VERSION%%/mac/node34.html
+ share/doc/%%PYTHON_VERSION%%/mac/node6.html
+ share/doc/%%PYTHON_VERSION%%/mac/node7.html
++share/doc/%%PYTHON_VERSION%%/mac/node94.html
++share/doc/%%PYTHON_VERSION%%/mac/node95.html
++share/doc/%%PYTHON_VERSION%%/mac/node96.html
+ share/doc/%%PYTHON_VERSION%%/mac/scripting-with-BBedit.html
+ share/doc/%%PYTHON_VERSION%%/mac/scrolledwindow-object.html
+ share/doc/%%PYTHON_VERSION%%/mac/search-path.html
+@@ -774,9 +957,11 @@
+ share/doc/%%PYTHON_VERSION%%/ref/conversions.html
+ share/doc/%%PYTHON_VERSION%%/ref/customization.html
+ share/doc/%%PYTHON_VERSION%%/ref/datamodel.html
++share/doc/%%PYTHON_VERSION%%/ref/definitions.html
+ share/doc/%%PYTHON_VERSION%%/ref/del.html
+ share/doc/%%PYTHON_VERSION%%/ref/delimiters.html
+ share/doc/%%PYTHON_VERSION%%/ref/dict.html
++share/doc/%%PYTHON_VERSION%%/ref/dynamic-features.html
+ share/doc/%%PYTHON_VERSION%%/ref/exceptions.html
+ share/doc/%%PYTHON_VERSION%%/ref/exec.html
+ share/doc/%%PYTHON_VERSION%%/ref/execframes.html
+@@ -791,8 +976,11 @@
+ share/doc/%%PYTHON_VERSION%%/ref/for.html
+ share/doc/%%PYTHON_VERSION%%/ref/front.html
+ share/doc/%%PYTHON_VERSION%%/ref/function.html
++share/doc/%%PYTHON_VERSION%%/ref/future-statements.html
++share/doc/%%PYTHON_VERSION%%/ref/futures.html
+ share/doc/%%PYTHON_VERSION%%/ref/genindex.html
+ share/doc/%%PYTHON_VERSION%%/ref/global.html
++share/doc/%%PYTHON_VERSION%%/ref/grammar.txt
+ share/doc/%%PYTHON_VERSION%%/ref/id-classes.html
+ share/doc/%%PYTHON_VERSION%%/ref/identifiers.html
+ share/doc/%%PYTHON_VERSION%%/ref/if.html
+@@ -811,6 +999,11 @@
+ share/doc/%%PYTHON_VERSION%%/ref/lists.html
+ share/doc/%%PYTHON_VERSION%%/ref/literals.html
+ share/doc/%%PYTHON_VERSION%%/ref/logical.html
++share/doc/%%PYTHON_VERSION%%/ref/module-future.html
++share/doc/%%PYTHON_VERSION%%/ref/nested-scopes.html
++share/doc/%%PYTHON_VERSION%%/ref/node100.html
++share/doc/%%PYTHON_VERSION%%/ref/node98.html
++share/doc/%%PYTHON_VERSION%%/ref/node99.html
+ share/doc/%%PYTHON_VERSION%%/ref/notation.html
+ share/doc/%%PYTHON_VERSION%%/ref/numbers.html
+ share/doc/%%PYTHON_VERSION%%/ref/numeric-types.html
+@@ -845,6 +1038,7 @@
+ share/doc/%%PYTHON_VERSION%%/ref/unary.html
+ share/doc/%%PYTHON_VERSION%%/ref/while.html
+ share/doc/%%PYTHON_VERSION%%/ref/whitespace.html
++share/doc/%%PYTHON_VERSION%%/ref/yield.html
+ share/doc/%%PYTHON_VERSION%%/tut/about.html
+ share/doc/%%PYTHON_VERSION%%/tut/index.html
+ share/doc/%%PYTHON_VERSION%%/tut/node1.html
+@@ -853,6 +1047,8 @@
+ share/doc/%%PYTHON_VERSION%%/tut/node12.html
+ share/doc/%%PYTHON_VERSION%%/tut/node13.html
+ share/doc/%%PYTHON_VERSION%%/tut/node14.html
++share/doc/%%PYTHON_VERSION%%/tut/node15.html
++share/doc/%%PYTHON_VERSION%%/tut/node16.html
+ share/doc/%%PYTHON_VERSION%%/tut/node2.html
+ share/doc/%%PYTHON_VERSION%%/tut/node3.html
+ share/doc/%%PYTHON_VERSION%%/tut/node4.html
+@@ -863,6 +1059,24 @@
+ share/doc/%%PYTHON_VERSION%%/tut/node9.html
+ share/doc/%%PYTHON_VERSION%%/tut/tut.css
+ share/doc/%%PYTHON_VERSION%%/tut/tut.html
++share/doc/%%PYTHON_VERSION%%/whatsnew/about.html
++share/doc/%%PYTHON_VERSION%%/whatsnew/contents.html
++share/doc/%%PYTHON_VERSION%%/whatsnew/index.html
++share/doc/%%PYTHON_VERSION%%/whatsnew/node10.html
++share/doc/%%PYTHON_VERSION%%/whatsnew/node11.html
++share/doc/%%PYTHON_VERSION%%/whatsnew/node12.html
++share/doc/%%PYTHON_VERSION%%/whatsnew/node13.html
++share/doc/%%PYTHON_VERSION%%/whatsnew/node2.html
++share/doc/%%PYTHON_VERSION%%/whatsnew/node4.html
++share/doc/%%PYTHON_VERSION%%/whatsnew/node5.html
++share/doc/%%PYTHON_VERSION%%/whatsnew/node6.html
++share/doc/%%PYTHON_VERSION%%/whatsnew/node7.html
++share/doc/%%PYTHON_VERSION%%/whatsnew/node8.html
++share/doc/%%PYTHON_VERSION%%/whatsnew/node9.html
++share/doc/%%PYTHON_VERSION%%/whatsnew/sect-rellinks.html
++share/doc/%%PYTHON_VERSION%%/whatsnew/whatsnew22.css
++share/doc/%%PYTHON_VERSION%%/whatsnew/whatsnew22.html
++@dirrm share/doc/%%PYTHON_VERSION%%/whatsnew
+ @dirrm share/doc/%%PYTHON_VERSION%%/tut
+ @dirrm share/doc/%%PYTHON_VERSION%%/ref
+ @dirrm share/doc/%%PYTHON_VERSION%%/mac
>Release-Note:
>Audit-Trail:
>Unformatted:

To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe freebsd-ports" in the body of the message




Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200204102301.g3AN1Mbe060047>