[pypy-commit] benchmarks default: fix the benchmark

fijal noreply at buildbot.pypy.org
Tue Jan 17 17:37:52 CET 2012


Author: Maciej Fijalkowski <fijall at gmail.com>
Branch: 
Changeset: r159:c01ab59c2a28
Date: 2012-01-17 17:37 +0100
http://bitbucket.org/pypy/benchmarks/changeset/c01ab59c2a28/

Log:	fix the benchmark

diff --git a/.hgignore b/.hgignore
--- a/.hgignore
+++ b/.hgignore
@@ -1,2 +1,3 @@
 .*\.py[co]
-.*~
\ No newline at end of file
+.*~
+lib/cpython-doc/tools/build
diff --git a/benchmarks.py b/benchmarks.py
--- a/benchmarks.py
+++ b/benchmarks.py
@@ -161,14 +161,14 @@
         htmldir = os.path.join(builddir, 'html')
         os.mkdir(htmldir)
         args = base_python + [build, '-b', 'html', '-d', docdir, maindir, htmldir]
-        proc = subprocess.Popen(args, stderr=subprocess.PIPE)
+        proc = subprocess.Popen(args, stderr=subprocess.PIPE, stdout=subprocess.PIPE)
         out, err = proc.communicate()
         retcode = proc.poll()
         if retcode != 0:
             print out
             print err
             raise Exception("sphinx-build.py failed")
-        t.append(float(out.splitlines(-1).strip()))
+        t.append(float(out.splitlines()[-1]))
     return RawResult([t[0]], [t[1]])
     
 BM_cpython_doc.benchmark_name = 'sphinx'
diff --git a/lib/cpython-doc/tools/build/doctrees/about.doctree b/lib/cpython-doc/tools/build/doctrees/about.doctree
deleted file mode 100644
Binary file lib/cpython-doc/tools/build/doctrees/about.doctree has changed
diff --git a/lib/cpython-doc/tools/build/doctrees/bugs.doctree b/lib/cpython-doc/tools/build/doctrees/bugs.doctree
deleted file mode 100644
Binary file lib/cpython-doc/tools/build/doctrees/bugs.doctree has changed
diff --git a/lib/cpython-doc/tools/build/doctrees/c-api/abstract.doctree b/lib/cpython-doc/tools/build/doctrees/c-api/abstract.doctree
deleted file mode 100644
Binary file lib/cpython-doc/tools/build/doctrees/c-api/abstract.doctree has changed
diff --git a/lib/cpython-doc/tools/build/doctrees/c-api/allocation.doctree b/lib/cpython-doc/tools/build/doctrees/c-api/allocation.doctree
deleted file mode 100644
Binary file lib/cpython-doc/tools/build/doctrees/c-api/allocation.doctree has changed
diff --git a/lib/cpython-doc/tools/build/doctrees/c-api/arg.doctree b/lib/cpython-doc/tools/build/doctrees/c-api/arg.doctree
deleted file mode 100644
Binary file lib/cpython-doc/tools/build/doctrees/c-api/arg.doctree has changed
diff --git a/lib/cpython-doc/tools/build/doctrees/c-api/bool.doctree b/lib/cpython-doc/tools/build/doctrees/c-api/bool.doctree
deleted file mode 100644
Binary file lib/cpython-doc/tools/build/doctrees/c-api/bool.doctree has changed
diff --git a/lib/cpython-doc/tools/build/doctrees/c-api/buffer.doctree b/lib/cpython-doc/tools/build/doctrees/c-api/buffer.doctree
deleted file mode 100644
Binary file lib/cpython-doc/tools/build/doctrees/c-api/buffer.doctree has changed
diff --git a/lib/cpython-doc/tools/build/doctrees/c-api/bytearray.doctree b/lib/cpython-doc/tools/build/doctrees/c-api/bytearray.doctree
deleted file mode 100644
Binary file lib/cpython-doc/tools/build/doctrees/c-api/bytearray.doctree has changed
diff --git a/lib/cpython-doc/tools/build/doctrees/c-api/bytes.doctree b/lib/cpython-doc/tools/build/doctrees/c-api/bytes.doctree
deleted file mode 100644
Binary file lib/cpython-doc/tools/build/doctrees/c-api/bytes.doctree has changed
diff --git a/lib/cpython-doc/tools/build/doctrees/c-api/capsule.doctree b/lib/cpython-doc/tools/build/doctrees/c-api/capsule.doctree
deleted file mode 100644
Binary file lib/cpython-doc/tools/build/doctrees/c-api/capsule.doctree has changed
diff --git a/lib/cpython-doc/tools/build/doctrees/c-api/cell.doctree b/lib/cpython-doc/tools/build/doctrees/c-api/cell.doctree
deleted file mode 100644
Binary file lib/cpython-doc/tools/build/doctrees/c-api/cell.doctree has changed
diff --git a/lib/cpython-doc/tools/build/doctrees/c-api/code.doctree b/lib/cpython-doc/tools/build/doctrees/c-api/code.doctree
deleted file mode 100644
Binary file lib/cpython-doc/tools/build/doctrees/c-api/code.doctree has changed
diff --git a/lib/cpython-doc/tools/build/doctrees/c-api/codec.doctree b/lib/cpython-doc/tools/build/doctrees/c-api/codec.doctree
deleted file mode 100644
Binary file lib/cpython-doc/tools/build/doctrees/c-api/codec.doctree has changed
diff --git a/lib/cpython-doc/tools/build/doctrees/c-api/complex.doctree b/lib/cpython-doc/tools/build/doctrees/c-api/complex.doctree
deleted file mode 100644
Binary file lib/cpython-doc/tools/build/doctrees/c-api/complex.doctree has changed
diff --git a/lib/cpython-doc/tools/build/doctrees/c-api/concrete.doctree b/lib/cpython-doc/tools/build/doctrees/c-api/concrete.doctree
deleted file mode 100644
Binary file lib/cpython-doc/tools/build/doctrees/c-api/concrete.doctree has changed
diff --git a/lib/cpython-doc/tools/build/doctrees/c-api/conversion.doctree b/lib/cpython-doc/tools/build/doctrees/c-api/conversion.doctree
deleted file mode 100644
Binary file lib/cpython-doc/tools/build/doctrees/c-api/conversion.doctree has changed
diff --git a/lib/cpython-doc/tools/build/doctrees/c-api/datetime.doctree b/lib/cpython-doc/tools/build/doctrees/c-api/datetime.doctree
deleted file mode 100644
Binary file lib/cpython-doc/tools/build/doctrees/c-api/datetime.doctree has changed
diff --git a/lib/cpython-doc/tools/build/doctrees/c-api/descriptor.doctree b/lib/cpython-doc/tools/build/doctrees/c-api/descriptor.doctree
deleted file mode 100644
Binary file lib/cpython-doc/tools/build/doctrees/c-api/descriptor.doctree has changed
diff --git a/lib/cpython-doc/tools/build/doctrees/c-api/dict.doctree b/lib/cpython-doc/tools/build/doctrees/c-api/dict.doctree
deleted file mode 100644
Binary file lib/cpython-doc/tools/build/doctrees/c-api/dict.doctree has changed
diff --git a/lib/cpython-doc/tools/build/doctrees/c-api/exceptions.doctree b/lib/cpython-doc/tools/build/doctrees/c-api/exceptions.doctree
deleted file mode 100644
Binary file lib/cpython-doc/tools/build/doctrees/c-api/exceptions.doctree has changed
diff --git a/lib/cpython-doc/tools/build/doctrees/c-api/file.doctree b/lib/cpython-doc/tools/build/doctrees/c-api/file.doctree
deleted file mode 100644
Binary file lib/cpython-doc/tools/build/doctrees/c-api/file.doctree has changed
diff --git a/lib/cpython-doc/tools/build/doctrees/c-api/float.doctree b/lib/cpython-doc/tools/build/doctrees/c-api/float.doctree
deleted file mode 100644
Binary file lib/cpython-doc/tools/build/doctrees/c-api/float.doctree has changed
diff --git a/lib/cpython-doc/tools/build/doctrees/c-api/function.doctree b/lib/cpython-doc/tools/build/doctrees/c-api/function.doctree
deleted file mode 100644
Binary file lib/cpython-doc/tools/build/doctrees/c-api/function.doctree has changed
diff --git a/lib/cpython-doc/tools/build/doctrees/c-api/gcsupport.doctree b/lib/cpython-doc/tools/build/doctrees/c-api/gcsupport.doctree
deleted file mode 100644
Binary file lib/cpython-doc/tools/build/doctrees/c-api/gcsupport.doctree has changed
diff --git a/lib/cpython-doc/tools/build/doctrees/c-api/gen.doctree b/lib/cpython-doc/tools/build/doctrees/c-api/gen.doctree
deleted file mode 100644
Binary file lib/cpython-doc/tools/build/doctrees/c-api/gen.doctree has changed
diff --git a/lib/cpython-doc/tools/build/doctrees/c-api/import.doctree b/lib/cpython-doc/tools/build/doctrees/c-api/import.doctree
deleted file mode 100644
Binary file lib/cpython-doc/tools/build/doctrees/c-api/import.doctree has changed
diff --git a/lib/cpython-doc/tools/build/doctrees/c-api/index.doctree b/lib/cpython-doc/tools/build/doctrees/c-api/index.doctree
deleted file mode 100644
Binary file lib/cpython-doc/tools/build/doctrees/c-api/index.doctree has changed
diff --git a/lib/cpython-doc/tools/build/doctrees/c-api/init.doctree b/lib/cpython-doc/tools/build/doctrees/c-api/init.doctree
deleted file mode 100644
Binary file lib/cpython-doc/tools/build/doctrees/c-api/init.doctree has changed
diff --git a/lib/cpython-doc/tools/build/doctrees/c-api/intro.doctree b/lib/cpython-doc/tools/build/doctrees/c-api/intro.doctree
deleted file mode 100644
Binary file lib/cpython-doc/tools/build/doctrees/c-api/intro.doctree has changed
diff --git a/lib/cpython-doc/tools/build/doctrees/c-api/iter.doctree b/lib/cpython-doc/tools/build/doctrees/c-api/iter.doctree
deleted file mode 100644
Binary file lib/cpython-doc/tools/build/doctrees/c-api/iter.doctree has changed
diff --git a/lib/cpython-doc/tools/build/doctrees/c-api/iterator.doctree b/lib/cpython-doc/tools/build/doctrees/c-api/iterator.doctree
deleted file mode 100644
Binary file lib/cpython-doc/tools/build/doctrees/c-api/iterator.doctree has changed
diff --git a/lib/cpython-doc/tools/build/doctrees/c-api/list.doctree b/lib/cpython-doc/tools/build/doctrees/c-api/list.doctree
deleted file mode 100644
Binary file lib/cpython-doc/tools/build/doctrees/c-api/list.doctree has changed
diff --git a/lib/cpython-doc/tools/build/doctrees/c-api/long.doctree b/lib/cpython-doc/tools/build/doctrees/c-api/long.doctree
deleted file mode 100644
Binary file lib/cpython-doc/tools/build/doctrees/c-api/long.doctree has changed
diff --git a/lib/cpython-doc/tools/build/doctrees/c-api/mapping.doctree b/lib/cpython-doc/tools/build/doctrees/c-api/mapping.doctree
deleted file mode 100644
Binary file lib/cpython-doc/tools/build/doctrees/c-api/mapping.doctree has changed
diff --git a/lib/cpython-doc/tools/build/doctrees/c-api/marshal.doctree b/lib/cpython-doc/tools/build/doctrees/c-api/marshal.doctree
deleted file mode 100644
Binary file lib/cpython-doc/tools/build/doctrees/c-api/marshal.doctree has changed
diff --git a/lib/cpython-doc/tools/build/doctrees/c-api/memory.doctree b/lib/cpython-doc/tools/build/doctrees/c-api/memory.doctree
deleted file mode 100644
Binary file lib/cpython-doc/tools/build/doctrees/c-api/memory.doctree has changed
diff --git a/lib/cpython-doc/tools/build/doctrees/c-api/memoryview.doctree b/lib/cpython-doc/tools/build/doctrees/c-api/memoryview.doctree
deleted file mode 100644
Binary file lib/cpython-doc/tools/build/doctrees/c-api/memoryview.doctree has changed
diff --git a/lib/cpython-doc/tools/build/doctrees/c-api/method.doctree b/lib/cpython-doc/tools/build/doctrees/c-api/method.doctree
deleted file mode 100644
Binary file lib/cpython-doc/tools/build/doctrees/c-api/method.doctree has changed
diff --git a/lib/cpython-doc/tools/build/doctrees/c-api/module.doctree b/lib/cpython-doc/tools/build/doctrees/c-api/module.doctree
deleted file mode 100644
Binary file lib/cpython-doc/tools/build/doctrees/c-api/module.doctree has changed
diff --git a/lib/cpython-doc/tools/build/doctrees/c-api/none.doctree b/lib/cpython-doc/tools/build/doctrees/c-api/none.doctree
deleted file mode 100644
Binary file lib/cpython-doc/tools/build/doctrees/c-api/none.doctree has changed
diff --git a/lib/cpython-doc/tools/build/doctrees/c-api/number.doctree b/lib/cpython-doc/tools/build/doctrees/c-api/number.doctree
deleted file mode 100644
Binary file lib/cpython-doc/tools/build/doctrees/c-api/number.doctree has changed
diff --git a/lib/cpython-doc/tools/build/doctrees/c-api/objbuffer.doctree b/lib/cpython-doc/tools/build/doctrees/c-api/objbuffer.doctree
deleted file mode 100644
Binary file lib/cpython-doc/tools/build/doctrees/c-api/objbuffer.doctree has changed
diff --git a/lib/cpython-doc/tools/build/doctrees/c-api/object.doctree b/lib/cpython-doc/tools/build/doctrees/c-api/object.doctree
deleted file mode 100644
Binary file lib/cpython-doc/tools/build/doctrees/c-api/object.doctree has changed
diff --git a/lib/cpython-doc/tools/build/doctrees/c-api/objimpl.doctree b/lib/cpython-doc/tools/build/doctrees/c-api/objimpl.doctree
deleted file mode 100644
Binary file lib/cpython-doc/tools/build/doctrees/c-api/objimpl.doctree has changed
diff --git a/lib/cpython-doc/tools/build/doctrees/c-api/refcounting.doctree b/lib/cpython-doc/tools/build/doctrees/c-api/refcounting.doctree
deleted file mode 100644
Binary file lib/cpython-doc/tools/build/doctrees/c-api/refcounting.doctree has changed
diff --git a/lib/cpython-doc/tools/build/doctrees/c-api/reflection.doctree b/lib/cpython-doc/tools/build/doctrees/c-api/reflection.doctree
deleted file mode 100644
Binary file lib/cpython-doc/tools/build/doctrees/c-api/reflection.doctree has changed
diff --git a/lib/cpython-doc/tools/build/doctrees/c-api/sequence.doctree b/lib/cpython-doc/tools/build/doctrees/c-api/sequence.doctree
deleted file mode 100644
Binary file lib/cpython-doc/tools/build/doctrees/c-api/sequence.doctree has changed
diff --git a/lib/cpython-doc/tools/build/doctrees/c-api/set.doctree b/lib/cpython-doc/tools/build/doctrees/c-api/set.doctree
deleted file mode 100644
Binary file lib/cpython-doc/tools/build/doctrees/c-api/set.doctree has changed
diff --git a/lib/cpython-doc/tools/build/doctrees/c-api/slice.doctree b/lib/cpython-doc/tools/build/doctrees/c-api/slice.doctree
deleted file mode 100644
Binary file lib/cpython-doc/tools/build/doctrees/c-api/slice.doctree has changed
diff --git a/lib/cpython-doc/tools/build/doctrees/c-api/structures.doctree b/lib/cpython-doc/tools/build/doctrees/c-api/structures.doctree
deleted file mode 100644
Binary file lib/cpython-doc/tools/build/doctrees/c-api/structures.doctree has changed
diff --git a/lib/cpython-doc/tools/build/doctrees/c-api/sys.doctree b/lib/cpython-doc/tools/build/doctrees/c-api/sys.doctree
deleted file mode 100644
Binary file lib/cpython-doc/tools/build/doctrees/c-api/sys.doctree has changed
diff --git a/lib/cpython-doc/tools/build/doctrees/c-api/tuple.doctree b/lib/cpython-doc/tools/build/doctrees/c-api/tuple.doctree
deleted file mode 100644
Binary file lib/cpython-doc/tools/build/doctrees/c-api/tuple.doctree has changed
diff --git a/lib/cpython-doc/tools/build/doctrees/c-api/type.doctree b/lib/cpython-doc/tools/build/doctrees/c-api/type.doctree
deleted file mode 100644
Binary file lib/cpython-doc/tools/build/doctrees/c-api/type.doctree has changed
diff --git a/lib/cpython-doc/tools/build/doctrees/c-api/typeobj.doctree b/lib/cpython-doc/tools/build/doctrees/c-api/typeobj.doctree
deleted file mode 100644
Binary file lib/cpython-doc/tools/build/doctrees/c-api/typeobj.doctree has changed
diff --git a/lib/cpython-doc/tools/build/doctrees/c-api/unicode.doctree b/lib/cpython-doc/tools/build/doctrees/c-api/unicode.doctree
deleted file mode 100644
Binary file lib/cpython-doc/tools/build/doctrees/c-api/unicode.doctree has changed
diff --git a/lib/cpython-doc/tools/build/doctrees/c-api/utilities.doctree b/lib/cpython-doc/tools/build/doctrees/c-api/utilities.doctree
deleted file mode 100644
Binary file lib/cpython-doc/tools/build/doctrees/c-api/utilities.doctree has changed
diff --git a/lib/cpython-doc/tools/build/doctrees/c-api/veryhigh.doctree b/lib/cpython-doc/tools/build/doctrees/c-api/veryhigh.doctree
deleted file mode 100644
Binary file lib/cpython-doc/tools/build/doctrees/c-api/veryhigh.doctree has changed
diff --git a/lib/cpython-doc/tools/build/doctrees/c-api/weakref.doctree b/lib/cpython-doc/tools/build/doctrees/c-api/weakref.doctree
deleted file mode 100644
Binary file lib/cpython-doc/tools/build/doctrees/c-api/weakref.doctree has changed
diff --git a/lib/cpython-doc/tools/build/doctrees/contents.doctree b/lib/cpython-doc/tools/build/doctrees/contents.doctree
deleted file mode 100644
Binary file lib/cpython-doc/tools/build/doctrees/contents.doctree has changed
diff --git a/lib/cpython-doc/tools/build/doctrees/copyright.doctree b/lib/cpython-doc/tools/build/doctrees/copyright.doctree
deleted file mode 100644
Binary file lib/cpython-doc/tools/build/doctrees/copyright.doctree has changed
diff --git a/lib/cpython-doc/tools/build/doctrees/distutils/apiref.doctree b/lib/cpython-doc/tools/build/doctrees/distutils/apiref.doctree
deleted file mode 100644
Binary file lib/cpython-doc/tools/build/doctrees/distutils/apiref.doctree has changed
diff --git a/lib/cpython-doc/tools/build/doctrees/distutils/builtdist.doctree b/lib/cpython-doc/tools/build/doctrees/distutils/builtdist.doctree
deleted file mode 100644
Binary file lib/cpython-doc/tools/build/doctrees/distutils/builtdist.doctree has changed
diff --git a/lib/cpython-doc/tools/build/doctrees/distutils/commandref.doctree b/lib/cpython-doc/tools/build/doctrees/distutils/commandref.doctree
deleted file mode 100644
Binary file lib/cpython-doc/tools/build/doctrees/distutils/commandref.doctree has changed
diff --git a/lib/cpython-doc/tools/build/doctrees/distutils/configfile.doctree b/lib/cpython-doc/tools/build/doctrees/distutils/configfile.doctree
deleted file mode 100644
Binary file lib/cpython-doc/tools/build/doctrees/distutils/configfile.doctree has changed
diff --git a/lib/cpython-doc/tools/build/doctrees/distutils/examples.doctree b/lib/cpython-doc/tools/build/doctrees/distutils/examples.doctree
deleted file mode 100644
Binary file lib/cpython-doc/tools/build/doctrees/distutils/examples.doctree has changed
diff --git a/lib/cpython-doc/tools/build/doctrees/distutils/extending.doctree b/lib/cpython-doc/tools/build/doctrees/distutils/extending.doctree
deleted file mode 100644
Binary file lib/cpython-doc/tools/build/doctrees/distutils/extending.doctree has changed
diff --git a/lib/cpython-doc/tools/build/doctrees/distutils/index.doctree b/lib/cpython-doc/tools/build/doctrees/distutils/index.doctree
deleted file mode 100644
Binary file lib/cpython-doc/tools/build/doctrees/distutils/index.doctree has changed
diff --git a/lib/cpython-doc/tools/build/doctrees/distutils/install.doctree b/lib/cpython-doc/tools/build/doctrees/distutils/install.doctree
deleted file mode 100644
Binary file lib/cpython-doc/tools/build/doctrees/distutils/install.doctree has changed
diff --git a/lib/cpython-doc/tools/build/doctrees/distutils/introduction.doctree b/lib/cpython-doc/tools/build/doctrees/distutils/introduction.doctree
deleted file mode 100644
Binary file lib/cpython-doc/tools/build/doctrees/distutils/introduction.doctree has changed
diff --git a/lib/cpython-doc/tools/build/doctrees/distutils/packageindex.doctree b/lib/cpython-doc/tools/build/doctrees/distutils/packageindex.doctree
deleted file mode 100644
Binary file lib/cpython-doc/tools/build/doctrees/distutils/packageindex.doctree has changed
diff --git a/lib/cpython-doc/tools/build/doctrees/distutils/setupscript.doctree b/lib/cpython-doc/tools/build/doctrees/distutils/setupscript.doctree
deleted file mode 100644
Binary file lib/cpython-doc/tools/build/doctrees/distutils/setupscript.doctree has changed
diff --git a/lib/cpython-doc/tools/build/doctrees/distutils/sourcedist.doctree b/lib/cpython-doc/tools/build/doctrees/distutils/sourcedist.doctree
deleted file mode 100644
Binary file lib/cpython-doc/tools/build/doctrees/distutils/sourcedist.doctree has changed
diff --git a/lib/cpython-doc/tools/build/doctrees/distutils/uploading.doctree b/lib/cpython-doc/tools/build/doctrees/distutils/uploading.doctree
deleted file mode 100644
Binary file lib/cpython-doc/tools/build/doctrees/distutils/uploading.doctree has changed
diff --git a/lib/cpython-doc/tools/build/doctrees/extending/building.doctree b/lib/cpython-doc/tools/build/doctrees/extending/building.doctree
deleted file mode 100644
Binary file lib/cpython-doc/tools/build/doctrees/extending/building.doctree has changed
diff --git a/lib/cpython-doc/tools/build/doctrees/extending/embedding.doctree b/lib/cpython-doc/tools/build/doctrees/extending/embedding.doctree
deleted file mode 100644
Binary file lib/cpython-doc/tools/build/doctrees/extending/embedding.doctree has changed
diff --git a/lib/cpython-doc/tools/build/doctrees/extending/extending.doctree b/lib/cpython-doc/tools/build/doctrees/extending/extending.doctree
deleted file mode 100644
Binary file lib/cpython-doc/tools/build/doctrees/extending/extending.doctree has changed
diff --git a/lib/cpython-doc/tools/build/doctrees/extending/index.doctree b/lib/cpython-doc/tools/build/doctrees/extending/index.doctree
deleted file mode 100644
Binary file lib/cpython-doc/tools/build/doctrees/extending/index.doctree has changed
diff --git a/lib/cpython-doc/tools/build/doctrees/extending/newtypes.doctree b/lib/cpython-doc/tools/build/doctrees/extending/newtypes.doctree
deleted file mode 100644
Binary file lib/cpython-doc/tools/build/doctrees/extending/newtypes.doctree has changed
diff --git a/lib/cpython-doc/tools/build/doctrees/extending/windows.doctree b/lib/cpython-doc/tools/build/doctrees/extending/windows.doctree
deleted file mode 100644
Binary file lib/cpython-doc/tools/build/doctrees/extending/windows.doctree has changed
diff --git a/lib/cpython-doc/tools/build/doctrees/faq/design.doctree b/lib/cpython-doc/tools/build/doctrees/faq/design.doctree
deleted file mode 100644
Binary file lib/cpython-doc/tools/build/doctrees/faq/design.doctree has changed
diff --git a/lib/cpython-doc/tools/build/doctrees/faq/extending.doctree b/lib/cpython-doc/tools/build/doctrees/faq/extending.doctree
deleted file mode 100644
Binary file lib/cpython-doc/tools/build/doctrees/faq/extending.doctree has changed
diff --git a/lib/cpython-doc/tools/build/doctrees/faq/general.doctree b/lib/cpython-doc/tools/build/doctrees/faq/general.doctree
deleted file mode 100644
Binary file lib/cpython-doc/tools/build/doctrees/faq/general.doctree has changed
diff --git a/lib/cpython-doc/tools/build/doctrees/faq/gui.doctree b/lib/cpython-doc/tools/build/doctrees/faq/gui.doctree
deleted file mode 100644
Binary file lib/cpython-doc/tools/build/doctrees/faq/gui.doctree has changed
diff --git a/lib/cpython-doc/tools/build/doctrees/faq/index.doctree b/lib/cpython-doc/tools/build/doctrees/faq/index.doctree
deleted file mode 100644
Binary file lib/cpython-doc/tools/build/doctrees/faq/index.doctree has changed
diff --git a/lib/cpython-doc/tools/build/doctrees/faq/installed.doctree b/lib/cpython-doc/tools/build/doctrees/faq/installed.doctree
deleted file mode 100644
Binary file lib/cpython-doc/tools/build/doctrees/faq/installed.doctree has changed
diff --git a/lib/cpython-doc/tools/build/doctrees/faq/library.doctree b/lib/cpython-doc/tools/build/doctrees/faq/library.doctree
deleted file mode 100644
Binary file lib/cpython-doc/tools/build/doctrees/faq/library.doctree has changed
diff --git a/lib/cpython-doc/tools/build/doctrees/faq/programming.doctree b/lib/cpython-doc/tools/build/doctrees/faq/programming.doctree
deleted file mode 100644
Binary file lib/cpython-doc/tools/build/doctrees/faq/programming.doctree has changed
diff --git a/lib/cpython-doc/tools/build/doctrees/faq/windows.doctree b/lib/cpython-doc/tools/build/doctrees/faq/windows.doctree
deleted file mode 100644
Binary file lib/cpython-doc/tools/build/doctrees/faq/windows.doctree has changed
diff --git a/lib/cpython-doc/tools/build/doctrees/glossary.doctree b/lib/cpython-doc/tools/build/doctrees/glossary.doctree
deleted file mode 100644
Binary file lib/cpython-doc/tools/build/doctrees/glossary.doctree has changed
diff --git a/lib/cpython-doc/tools/build/doctrees/howto/advocacy.doctree b/lib/cpython-doc/tools/build/doctrees/howto/advocacy.doctree
deleted file mode 100644
Binary file lib/cpython-doc/tools/build/doctrees/howto/advocacy.doctree has changed
diff --git a/lib/cpython-doc/tools/build/doctrees/howto/cporting.doctree b/lib/cpython-doc/tools/build/doctrees/howto/cporting.doctree
deleted file mode 100644
Binary file lib/cpython-doc/tools/build/doctrees/howto/cporting.doctree has changed
diff --git a/lib/cpython-doc/tools/build/doctrees/howto/curses.doctree b/lib/cpython-doc/tools/build/doctrees/howto/curses.doctree
deleted file mode 100644
Binary file lib/cpython-doc/tools/build/doctrees/howto/curses.doctree has changed
diff --git a/lib/cpython-doc/tools/build/doctrees/howto/descriptor.doctree b/lib/cpython-doc/tools/build/doctrees/howto/descriptor.doctree
deleted file mode 100644
Binary file lib/cpython-doc/tools/build/doctrees/howto/descriptor.doctree has changed
diff --git a/lib/cpython-doc/tools/build/doctrees/howto/functional.doctree b/lib/cpython-doc/tools/build/doctrees/howto/functional.doctree
deleted file mode 100644
Binary file lib/cpython-doc/tools/build/doctrees/howto/functional.doctree has changed
diff --git a/lib/cpython-doc/tools/build/doctrees/howto/index.doctree b/lib/cpython-doc/tools/build/doctrees/howto/index.doctree
deleted file mode 100644
Binary file lib/cpython-doc/tools/build/doctrees/howto/index.doctree has changed
diff --git a/lib/cpython-doc/tools/build/doctrees/howto/logging-cookbook.doctree b/lib/cpython-doc/tools/build/doctrees/howto/logging-cookbook.doctree
deleted file mode 100644
Binary file lib/cpython-doc/tools/build/doctrees/howto/logging-cookbook.doctree has changed
diff --git a/lib/cpython-doc/tools/build/doctrees/howto/logging.doctree b/lib/cpython-doc/tools/build/doctrees/howto/logging.doctree
deleted file mode 100644
Binary file lib/cpython-doc/tools/build/doctrees/howto/logging.doctree has changed
diff --git a/lib/cpython-doc/tools/build/doctrees/howto/pyporting.doctree b/lib/cpython-doc/tools/build/doctrees/howto/pyporting.doctree
deleted file mode 100644
Binary file lib/cpython-doc/tools/build/doctrees/howto/pyporting.doctree has changed
diff --git a/lib/cpython-doc/tools/build/doctrees/howto/regex.doctree b/lib/cpython-doc/tools/build/doctrees/howto/regex.doctree
deleted file mode 100644
Binary file lib/cpython-doc/tools/build/doctrees/howto/regex.doctree has changed
diff --git a/lib/cpython-doc/tools/build/doctrees/howto/sockets.doctree b/lib/cpython-doc/tools/build/doctrees/howto/sockets.doctree
deleted file mode 100644
Binary file lib/cpython-doc/tools/build/doctrees/howto/sockets.doctree has changed
diff --git a/lib/cpython-doc/tools/build/doctrees/howto/sorting.doctree b/lib/cpython-doc/tools/build/doctrees/howto/sorting.doctree
deleted file mode 100644
Binary file lib/cpython-doc/tools/build/doctrees/howto/sorting.doctree has changed
diff --git a/lib/cpython-doc/tools/build/doctrees/howto/unicode.doctree b/lib/cpython-doc/tools/build/doctrees/howto/unicode.doctree
deleted file mode 100644
Binary file lib/cpython-doc/tools/build/doctrees/howto/unicode.doctree has changed
diff --git a/lib/cpython-doc/tools/build/doctrees/howto/urllib2.doctree b/lib/cpython-doc/tools/build/doctrees/howto/urllib2.doctree
deleted file mode 100644
Binary file lib/cpython-doc/tools/build/doctrees/howto/urllib2.doctree has changed
diff --git a/lib/cpython-doc/tools/build/doctrees/howto/webservers.doctree b/lib/cpython-doc/tools/build/doctrees/howto/webservers.doctree
deleted file mode 100644
Binary file lib/cpython-doc/tools/build/doctrees/howto/webservers.doctree has changed
diff --git a/lib/cpython-doc/tools/build/doctrees/install/index.doctree b/lib/cpython-doc/tools/build/doctrees/install/index.doctree
deleted file mode 100644
Binary file lib/cpython-doc/tools/build/doctrees/install/index.doctree has changed
diff --git a/lib/cpython-doc/tools/build/doctrees/install/install.doctree b/lib/cpython-doc/tools/build/doctrees/install/install.doctree
deleted file mode 100644
Binary file lib/cpython-doc/tools/build/doctrees/install/install.doctree has changed
diff --git a/lib/cpython-doc/tools/build/doctrees/install/pysetup-config.doctree b/lib/cpython-doc/tools/build/doctrees/install/pysetup-config.doctree
deleted file mode 100644
Binary file lib/cpython-doc/tools/build/doctrees/install/pysetup-config.doctree has changed
diff --git a/lib/cpython-doc/tools/build/doctrees/install/pysetup-servers.doctree b/lib/cpython-doc/tools/build/doctrees/install/pysetup-servers.doctree
deleted file mode 100644
Binary file lib/cpython-doc/tools/build/doctrees/install/pysetup-servers.doctree has changed
diff --git a/lib/cpython-doc/tools/build/doctrees/install/pysetup.doctree b/lib/cpython-doc/tools/build/doctrees/install/pysetup.doctree
deleted file mode 100644
Binary file lib/cpython-doc/tools/build/doctrees/install/pysetup.doctree has changed
diff --git a/lib/cpython-doc/tools/build/doctrees/library/2to3.doctree b/lib/cpython-doc/tools/build/doctrees/library/2to3.doctree
deleted file mode 100644
Binary file lib/cpython-doc/tools/build/doctrees/library/2to3.doctree has changed
diff --git a/lib/cpython-doc/tools/build/doctrees/library/__future__.doctree b/lib/cpython-doc/tools/build/doctrees/library/__future__.doctree
deleted file mode 100644
Binary file lib/cpython-doc/tools/build/doctrees/library/__future__.doctree has changed
diff --git a/lib/cpython-doc/tools/build/doctrees/library/__main__.doctree b/lib/cpython-doc/tools/build/doctrees/library/__main__.doctree
deleted file mode 100644
Binary file lib/cpython-doc/tools/build/doctrees/library/__main__.doctree has changed
diff --git a/lib/cpython-doc/tools/build/doctrees/library/_dummy_thread.doctree b/lib/cpython-doc/tools/build/doctrees/library/_dummy_thread.doctree
deleted file mode 100644
Binary file lib/cpython-doc/tools/build/doctrees/library/_dummy_thread.doctree has changed
diff --git a/lib/cpython-doc/tools/build/doctrees/library/_thread.doctree b/lib/cpython-doc/tools/build/doctrees/library/_thread.doctree
deleted file mode 100644
Binary file lib/cpython-doc/tools/build/doctrees/library/_thread.doctree has changed
diff --git a/lib/cpython-doc/tools/build/doctrees/library/abc.doctree b/lib/cpython-doc/tools/build/doctrees/library/abc.doctree
deleted file mode 100644
Binary file lib/cpython-doc/tools/build/doctrees/library/abc.doctree has changed
diff --git a/lib/cpython-doc/tools/build/doctrees/library/aifc.doctree b/lib/cpython-doc/tools/build/doctrees/library/aifc.doctree
deleted file mode 100644
Binary file lib/cpython-doc/tools/build/doctrees/library/aifc.doctree has changed
diff --git a/lib/cpython-doc/tools/build/doctrees/library/allos.doctree b/lib/cpython-doc/tools/build/doctrees/library/allos.doctree
deleted file mode 100644
Binary file lib/cpython-doc/tools/build/doctrees/library/allos.doctree has changed
diff --git a/lib/cpython-doc/tools/build/doctrees/library/archiving.doctree b/lib/cpython-doc/tools/build/doctrees/library/archiving.doctree
deleted file mode 100644
Binary file lib/cpython-doc/tools/build/doctrees/library/archiving.doctree has changed
diff --git a/lib/cpython-doc/tools/build/doctrees/library/argparse.doctree b/lib/cpython-doc/tools/build/doctrees/library/argparse.doctree
deleted file mode 100644
Binary file lib/cpython-doc/tools/build/doctrees/library/argparse.doctree has changed
diff --git a/lib/cpython-doc/tools/build/doctrees/library/array.doctree b/lib/cpython-doc/tools/build/doctrees/library/array.doctree
deleted file mode 100644
Binary file lib/cpython-doc/tools/build/doctrees/library/array.doctree has changed
diff --git a/lib/cpython-doc/tools/build/doctrees/library/ast.doctree b/lib/cpython-doc/tools/build/doctrees/library/ast.doctree
deleted file mode 100644
Binary file lib/cpython-doc/tools/build/doctrees/library/ast.doctree has changed
diff --git a/lib/cpython-doc/tools/build/doctrees/library/asynchat.doctree b/lib/cpython-doc/tools/build/doctrees/library/asynchat.doctree
deleted file mode 100644
Binary file lib/cpython-doc/tools/build/doctrees/library/asynchat.doctree has changed
diff --git a/lib/cpython-doc/tools/build/doctrees/library/asyncore.doctree b/lib/cpython-doc/tools/build/doctrees/library/asyncore.doctree
deleted file mode 100644
Binary file lib/cpython-doc/tools/build/doctrees/library/asyncore.doctree has changed
diff --git a/lib/cpython-doc/tools/build/doctrees/library/atexit.doctree b/lib/cpython-doc/tools/build/doctrees/library/atexit.doctree
deleted file mode 100644
Binary file lib/cpython-doc/tools/build/doctrees/library/atexit.doctree has changed
diff --git a/lib/cpython-doc/tools/build/doctrees/library/audioop.doctree b/lib/cpython-doc/tools/build/doctrees/library/audioop.doctree
deleted file mode 100644
Binary file lib/cpython-doc/tools/build/doctrees/library/audioop.doctree has changed
diff --git a/lib/cpython-doc/tools/build/doctrees/library/base64.doctree b/lib/cpython-doc/tools/build/doctrees/library/base64.doctree
deleted file mode 100644
Binary file lib/cpython-doc/tools/build/doctrees/library/base64.doctree has changed
diff --git a/lib/cpython-doc/tools/build/doctrees/library/bdb.doctree b/lib/cpython-doc/tools/build/doctrees/library/bdb.doctree
deleted file mode 100644
Binary file lib/cpython-doc/tools/build/doctrees/library/bdb.doctree has changed
diff --git a/lib/cpython-doc/tools/build/doctrees/library/binascii.doctree b/lib/cpython-doc/tools/build/doctrees/library/binascii.doctree
deleted file mode 100644
Binary file lib/cpython-doc/tools/build/doctrees/library/binascii.doctree has changed
diff --git a/lib/cpython-doc/tools/build/doctrees/library/binhex.doctree b/lib/cpython-doc/tools/build/doctrees/library/binhex.doctree
deleted file mode 100644
Binary file lib/cpython-doc/tools/build/doctrees/library/binhex.doctree has changed
diff --git a/lib/cpython-doc/tools/build/doctrees/library/bisect.doctree b/lib/cpython-doc/tools/build/doctrees/library/bisect.doctree
deleted file mode 100644
Binary file lib/cpython-doc/tools/build/doctrees/library/bisect.doctree has changed
diff --git a/lib/cpython-doc/tools/build/doctrees/library/builtins.doctree b/lib/cpython-doc/tools/build/doctrees/library/builtins.doctree
deleted file mode 100644
Binary file lib/cpython-doc/tools/build/doctrees/library/builtins.doctree has changed
diff --git a/lib/cpython-doc/tools/build/doctrees/library/bz2.doctree b/lib/cpython-doc/tools/build/doctrees/library/bz2.doctree
deleted file mode 100644
Binary file lib/cpython-doc/tools/build/doctrees/library/bz2.doctree has changed
diff --git a/lib/cpython-doc/tools/build/doctrees/library/calendar.doctree b/lib/cpython-doc/tools/build/doctrees/library/calendar.doctree
deleted file mode 100644
Binary file lib/cpython-doc/tools/build/doctrees/library/calendar.doctree has changed
diff --git a/lib/cpython-doc/tools/build/doctrees/library/cgi.doctree b/lib/cpython-doc/tools/build/doctrees/library/cgi.doctree
deleted file mode 100644
Binary file lib/cpython-doc/tools/build/doctrees/library/cgi.doctree has changed
diff --git a/lib/cpython-doc/tools/build/doctrees/library/cgitb.doctree b/lib/cpython-doc/tools/build/doctrees/library/cgitb.doctree
deleted file mode 100644
Binary file lib/cpython-doc/tools/build/doctrees/library/cgitb.doctree has changed
diff --git a/lib/cpython-doc/tools/build/doctrees/library/chunk.doctree b/lib/cpython-doc/tools/build/doctrees/library/chunk.doctree
deleted file mode 100644
Binary file lib/cpython-doc/tools/build/doctrees/library/chunk.doctree has changed
diff --git a/lib/cpython-doc/tools/build/doctrees/library/cmath.doctree b/lib/cpython-doc/tools/build/doctrees/library/cmath.doctree
deleted file mode 100644
Binary file lib/cpython-doc/tools/build/doctrees/library/cmath.doctree has changed
diff --git a/lib/cpython-doc/tools/build/doctrees/library/cmd.doctree b/lib/cpython-doc/tools/build/doctrees/library/cmd.doctree
deleted file mode 100644
Binary file lib/cpython-doc/tools/build/doctrees/library/cmd.doctree has changed
diff --git a/lib/cpython-doc/tools/build/doctrees/library/code.doctree b/lib/cpython-doc/tools/build/doctrees/library/code.doctree
deleted file mode 100644
Binary file lib/cpython-doc/tools/build/doctrees/library/code.doctree has changed
diff --git a/lib/cpython-doc/tools/build/doctrees/library/codecs.doctree b/lib/cpython-doc/tools/build/doctrees/library/codecs.doctree
deleted file mode 100644
Binary file lib/cpython-doc/tools/build/doctrees/library/codecs.doctree has changed
diff --git a/lib/cpython-doc/tools/build/doctrees/library/codeop.doctree b/lib/cpython-doc/tools/build/doctrees/library/codeop.doctree
deleted file mode 100644
Binary file lib/cpython-doc/tools/build/doctrees/library/codeop.doctree has changed
diff --git a/lib/cpython-doc/tools/build/doctrees/library/collections.abc.doctree b/lib/cpython-doc/tools/build/doctrees/library/collections.abc.doctree
deleted file mode 100644
Binary file lib/cpython-doc/tools/build/doctrees/library/collections.abc.doctree has changed
diff --git a/lib/cpython-doc/tools/build/doctrees/library/collections.doctree b/lib/cpython-doc/tools/build/doctrees/library/collections.doctree
deleted file mode 100644
Binary file lib/cpython-doc/tools/build/doctrees/library/collections.doctree has changed
diff --git a/lib/cpython-doc/tools/build/doctrees/library/colorsys.doctree b/lib/cpython-doc/tools/build/doctrees/library/colorsys.doctree
deleted file mode 100644
Binary file lib/cpython-doc/tools/build/doctrees/library/colorsys.doctree has changed
diff --git a/lib/cpython-doc/tools/build/doctrees/library/compileall.doctree b/lib/cpython-doc/tools/build/doctrees/library/compileall.doctree
deleted file mode 100644
Binary file lib/cpython-doc/tools/build/doctrees/library/compileall.doctree has changed
diff --git a/lib/cpython-doc/tools/build/doctrees/library/concurrent.futures.doctree b/lib/cpython-doc/tools/build/doctrees/library/concurrent.futures.doctree
deleted file mode 100644
Binary file lib/cpython-doc/tools/build/doctrees/library/concurrent.futures.doctree has changed
diff --git a/lib/cpython-doc/tools/build/doctrees/library/configparser.doctree b/lib/cpython-doc/tools/build/doctrees/library/configparser.doctree
deleted file mode 100644
Binary file lib/cpython-doc/tools/build/doctrees/library/configparser.doctree has changed
diff --git a/lib/cpython-doc/tools/build/doctrees/library/constants.doctree b/lib/cpython-doc/tools/build/doctrees/library/constants.doctree
deleted file mode 100644
Binary file lib/cpython-doc/tools/build/doctrees/library/constants.doctree has changed
diff --git a/lib/cpython-doc/tools/build/doctrees/library/contextlib.doctree b/lib/cpython-doc/tools/build/doctrees/library/contextlib.doctree
deleted file mode 100644
Binary file lib/cpython-doc/tools/build/doctrees/library/contextlib.doctree has changed
diff --git a/lib/cpython-doc/tools/build/doctrees/library/copy.doctree b/lib/cpython-doc/tools/build/doctrees/library/copy.doctree
deleted file mode 100644
Binary file lib/cpython-doc/tools/build/doctrees/library/copy.doctree has changed
diff --git a/lib/cpython-doc/tools/build/doctrees/library/copyreg.doctree b/lib/cpython-doc/tools/build/doctrees/library/copyreg.doctree
deleted file mode 100644
Binary file lib/cpython-doc/tools/build/doctrees/library/copyreg.doctree has changed
diff --git a/lib/cpython-doc/tools/build/doctrees/library/crypt.doctree b/lib/cpython-doc/tools/build/doctrees/library/crypt.doctree
deleted file mode 100644
Binary file lib/cpython-doc/tools/build/doctrees/library/crypt.doctree has changed
diff --git a/lib/cpython-doc/tools/build/doctrees/library/crypto.doctree b/lib/cpython-doc/tools/build/doctrees/library/crypto.doctree
deleted file mode 100644
Binary file lib/cpython-doc/tools/build/doctrees/library/crypto.doctree has changed
diff --git a/lib/cpython-doc/tools/build/doctrees/library/csv.doctree b/lib/cpython-doc/tools/build/doctrees/library/csv.doctree
deleted file mode 100644
Binary file lib/cpython-doc/tools/build/doctrees/library/csv.doctree has changed
diff --git a/lib/cpython-doc/tools/build/doctrees/library/ctypes.doctree b/lib/cpython-doc/tools/build/doctrees/library/ctypes.doctree
deleted file mode 100644
Binary file lib/cpython-doc/tools/build/doctrees/library/ctypes.doctree has changed
diff --git a/lib/cpython-doc/tools/build/doctrees/library/curses.ascii.doctree b/lib/cpython-doc/tools/build/doctrees/library/curses.ascii.doctree
deleted file mode 100644
Binary file lib/cpython-doc/tools/build/doctrees/library/curses.ascii.doctree has changed
diff --git a/lib/cpython-doc/tools/build/doctrees/library/curses.doctree b/lib/cpython-doc/tools/build/doctrees/library/curses.doctree
deleted file mode 100644
Binary file lib/cpython-doc/tools/build/doctrees/library/curses.doctree has changed
diff --git a/lib/cpython-doc/tools/build/doctrees/library/curses.panel.doctree b/lib/cpython-doc/tools/build/doctrees/library/curses.panel.doctree
deleted file mode 100644
Binary file lib/cpython-doc/tools/build/doctrees/library/curses.panel.doctree has changed
diff --git a/lib/cpython-doc/tools/build/doctrees/library/custominterp.doctree b/lib/cpython-doc/tools/build/doctrees/library/custominterp.doctree
deleted file mode 100644
Binary file lib/cpython-doc/tools/build/doctrees/library/custominterp.doctree has changed
diff --git a/lib/cpython-doc/tools/build/doctrees/library/datatypes.doctree b/lib/cpython-doc/tools/build/doctrees/library/datatypes.doctree
deleted file mode 100644
Binary file lib/cpython-doc/tools/build/doctrees/library/datatypes.doctree has changed
diff --git a/lib/cpython-doc/tools/build/doctrees/library/datetime.doctree b/lib/cpython-doc/tools/build/doctrees/library/datetime.doctree
deleted file mode 100644
Binary file lib/cpython-doc/tools/build/doctrees/library/datetime.doctree has changed
diff --git a/lib/cpython-doc/tools/build/doctrees/library/dbm.doctree b/lib/cpython-doc/tools/build/doctrees/library/dbm.doctree
deleted file mode 100644
Binary file lib/cpython-doc/tools/build/doctrees/library/dbm.doctree has changed
diff --git a/lib/cpython-doc/tools/build/doctrees/library/debug.doctree b/lib/cpython-doc/tools/build/doctrees/library/debug.doctree
deleted file mode 100644
Binary file lib/cpython-doc/tools/build/doctrees/library/debug.doctree has changed
diff --git a/lib/cpython-doc/tools/build/doctrees/library/decimal.doctree b/lib/cpython-doc/tools/build/doctrees/library/decimal.doctree
deleted file mode 100644
Binary file lib/cpython-doc/tools/build/doctrees/library/decimal.doctree has changed
diff --git a/lib/cpython-doc/tools/build/doctrees/library/development.doctree b/lib/cpython-doc/tools/build/doctrees/library/development.doctree
deleted file mode 100644
Binary file lib/cpython-doc/tools/build/doctrees/library/development.doctree has changed
diff --git a/lib/cpython-doc/tools/build/doctrees/library/difflib.doctree b/lib/cpython-doc/tools/build/doctrees/library/difflib.doctree
deleted file mode 100644
Binary file lib/cpython-doc/tools/build/doctrees/library/difflib.doctree has changed
diff --git a/lib/cpython-doc/tools/build/doctrees/library/dis.doctree b/lib/cpython-doc/tools/build/doctrees/library/dis.doctree
deleted file mode 100644
Binary file lib/cpython-doc/tools/build/doctrees/library/dis.doctree has changed
diff --git a/lib/cpython-doc/tools/build/doctrees/library/distutils.doctree b/lib/cpython-doc/tools/build/doctrees/library/distutils.doctree
deleted file mode 100644
Binary file lib/cpython-doc/tools/build/doctrees/library/distutils.doctree has changed
diff --git a/lib/cpython-doc/tools/build/doctrees/library/doctest.doctree b/lib/cpython-doc/tools/build/doctrees/library/doctest.doctree
deleted file mode 100644
Binary file lib/cpython-doc/tools/build/doctrees/library/doctest.doctree has changed
diff --git a/lib/cpython-doc/tools/build/doctrees/library/dummy_threading.doctree b/lib/cpython-doc/tools/build/doctrees/library/dummy_threading.doctree
deleted file mode 100644
Binary file lib/cpython-doc/tools/build/doctrees/library/dummy_threading.doctree has changed
diff --git a/lib/cpython-doc/tools/build/doctrees/library/email-examples.doctree b/lib/cpython-doc/tools/build/doctrees/library/email-examples.doctree
deleted file mode 100644
Binary file lib/cpython-doc/tools/build/doctrees/library/email-examples.doctree has changed
diff --git a/lib/cpython-doc/tools/build/doctrees/library/email.charset.doctree b/lib/cpython-doc/tools/build/doctrees/library/email.charset.doctree
deleted file mode 100644
Binary file lib/cpython-doc/tools/build/doctrees/library/email.charset.doctree has changed
diff --git a/lib/cpython-doc/tools/build/doctrees/library/email.doctree b/lib/cpython-doc/tools/build/doctrees/library/email.doctree
deleted file mode 100644
Binary file lib/cpython-doc/tools/build/doctrees/library/email.doctree has changed
diff --git a/lib/cpython-doc/tools/build/doctrees/library/email.encoders.doctree b/lib/cpython-doc/tools/build/doctrees/library/email.encoders.doctree
deleted file mode 100644
Binary file lib/cpython-doc/tools/build/doctrees/library/email.encoders.doctree has changed
diff --git a/lib/cpython-doc/tools/build/doctrees/library/email.errors.doctree b/lib/cpython-doc/tools/build/doctrees/library/email.errors.doctree
deleted file mode 100644
Binary file lib/cpython-doc/tools/build/doctrees/library/email.errors.doctree has changed
diff --git a/lib/cpython-doc/tools/build/doctrees/library/email.generator.doctree b/lib/cpython-doc/tools/build/doctrees/library/email.generator.doctree
deleted file mode 100644
Binary file lib/cpython-doc/tools/build/doctrees/library/email.generator.doctree has changed
diff --git a/lib/cpython-doc/tools/build/doctrees/library/email.header.doctree b/lib/cpython-doc/tools/build/doctrees/library/email.header.doctree
deleted file mode 100644
Binary file lib/cpython-doc/tools/build/doctrees/library/email.header.doctree has changed
diff --git a/lib/cpython-doc/tools/build/doctrees/library/email.iterators.doctree b/lib/cpython-doc/tools/build/doctrees/library/email.iterators.doctree
deleted file mode 100644
Binary file lib/cpython-doc/tools/build/doctrees/library/email.iterators.doctree has changed
diff --git a/lib/cpython-doc/tools/build/doctrees/library/email.message.doctree b/lib/cpython-doc/tools/build/doctrees/library/email.message.doctree
deleted file mode 100644
Binary file lib/cpython-doc/tools/build/doctrees/library/email.message.doctree has changed
diff --git a/lib/cpython-doc/tools/build/doctrees/library/email.mime.doctree b/lib/cpython-doc/tools/build/doctrees/library/email.mime.doctree
deleted file mode 100644
Binary file lib/cpython-doc/tools/build/doctrees/library/email.mime.doctree has changed
diff --git a/lib/cpython-doc/tools/build/doctrees/library/email.parser.doctree b/lib/cpython-doc/tools/build/doctrees/library/email.parser.doctree
deleted file mode 100644
Binary file lib/cpython-doc/tools/build/doctrees/library/email.parser.doctree has changed
diff --git a/lib/cpython-doc/tools/build/doctrees/library/email.policy.doctree b/lib/cpython-doc/tools/build/doctrees/library/email.policy.doctree
deleted file mode 100644
Binary file lib/cpython-doc/tools/build/doctrees/library/email.policy.doctree has changed
diff --git a/lib/cpython-doc/tools/build/doctrees/library/email.util.doctree b/lib/cpython-doc/tools/build/doctrees/library/email.util.doctree
deleted file mode 100644
Binary file lib/cpython-doc/tools/build/doctrees/library/email.util.doctree has changed
diff --git a/lib/cpython-doc/tools/build/doctrees/library/errno.doctree b/lib/cpython-doc/tools/build/doctrees/library/errno.doctree
deleted file mode 100644
Binary file lib/cpython-doc/tools/build/doctrees/library/errno.doctree has changed
diff --git a/lib/cpython-doc/tools/build/doctrees/library/exceptions.doctree b/lib/cpython-doc/tools/build/doctrees/library/exceptions.doctree
deleted file mode 100644
Binary file lib/cpython-doc/tools/build/doctrees/library/exceptions.doctree has changed
diff --git a/lib/cpython-doc/tools/build/doctrees/library/faulthandler.doctree b/lib/cpython-doc/tools/build/doctrees/library/faulthandler.doctree
deleted file mode 100644
Binary file lib/cpython-doc/tools/build/doctrees/library/faulthandler.doctree has changed
diff --git a/lib/cpython-doc/tools/build/doctrees/library/fcntl.doctree b/lib/cpython-doc/tools/build/doctrees/library/fcntl.doctree
deleted file mode 100644
Binary file lib/cpython-doc/tools/build/doctrees/library/fcntl.doctree has changed
diff --git a/lib/cpython-doc/tools/build/doctrees/library/filecmp.doctree b/lib/cpython-doc/tools/build/doctrees/library/filecmp.doctree
deleted file mode 100644
Binary file lib/cpython-doc/tools/build/doctrees/library/filecmp.doctree has changed
diff --git a/lib/cpython-doc/tools/build/doctrees/library/fileformats.doctree b/lib/cpython-doc/tools/build/doctrees/library/fileformats.doctree
deleted file mode 100644
Binary file lib/cpython-doc/tools/build/doctrees/library/fileformats.doctree has changed
diff --git a/lib/cpython-doc/tools/build/doctrees/library/fileinput.doctree b/lib/cpython-doc/tools/build/doctrees/library/fileinput.doctree
deleted file mode 100644
Binary file lib/cpython-doc/tools/build/doctrees/library/fileinput.doctree has changed
diff --git a/lib/cpython-doc/tools/build/doctrees/library/filesys.doctree b/lib/cpython-doc/tools/build/doctrees/library/filesys.doctree
deleted file mode 100644
Binary file lib/cpython-doc/tools/build/doctrees/library/filesys.doctree has changed
diff --git a/lib/cpython-doc/tools/build/doctrees/library/fnmatch.doctree b/lib/cpython-doc/tools/build/doctrees/library/fnmatch.doctree
deleted file mode 100644
Binary file lib/cpython-doc/tools/build/doctrees/library/fnmatch.doctree has changed
diff --git a/lib/cpython-doc/tools/build/doctrees/library/formatter.doctree b/lib/cpython-doc/tools/build/doctrees/library/formatter.doctree
deleted file mode 100644
Binary file lib/cpython-doc/tools/build/doctrees/library/formatter.doctree has changed
diff --git a/lib/cpython-doc/tools/build/doctrees/library/fpectl.doctree b/lib/cpython-doc/tools/build/doctrees/library/fpectl.doctree
deleted file mode 100644
Binary file lib/cpython-doc/tools/build/doctrees/library/fpectl.doctree has changed
diff --git a/lib/cpython-doc/tools/build/doctrees/library/fractions.doctree b/lib/cpython-doc/tools/build/doctrees/library/fractions.doctree
deleted file mode 100644
Binary file lib/cpython-doc/tools/build/doctrees/library/fractions.doctree has changed
diff --git a/lib/cpython-doc/tools/build/doctrees/library/frameworks.doctree b/lib/cpython-doc/tools/build/doctrees/library/frameworks.doctree
deleted file mode 100644
Binary file lib/cpython-doc/tools/build/doctrees/library/frameworks.doctree has changed
diff --git a/lib/cpython-doc/tools/build/doctrees/library/ftplib.doctree b/lib/cpython-doc/tools/build/doctrees/library/ftplib.doctree
deleted file mode 100644
Binary file lib/cpython-doc/tools/build/doctrees/library/ftplib.doctree has changed
diff --git a/lib/cpython-doc/tools/build/doctrees/library/functional.doctree b/lib/cpython-doc/tools/build/doctrees/library/functional.doctree
deleted file mode 100644
Binary file lib/cpython-doc/tools/build/doctrees/library/functional.doctree has changed
diff --git a/lib/cpython-doc/tools/build/doctrees/library/functions.doctree b/lib/cpython-doc/tools/build/doctrees/library/functions.doctree
deleted file mode 100644
Binary file lib/cpython-doc/tools/build/doctrees/library/functions.doctree has changed
diff --git a/lib/cpython-doc/tools/build/doctrees/library/functools.doctree b/lib/cpython-doc/tools/build/doctrees/library/functools.doctree
deleted file mode 100644
Binary file lib/cpython-doc/tools/build/doctrees/library/functools.doctree has changed
diff --git a/lib/cpython-doc/tools/build/doctrees/library/gc.doctree b/lib/cpython-doc/tools/build/doctrees/library/gc.doctree
deleted file mode 100644
Binary file lib/cpython-doc/tools/build/doctrees/library/gc.doctree has changed
diff --git a/lib/cpython-doc/tools/build/doctrees/library/getopt.doctree b/lib/cpython-doc/tools/build/doctrees/library/getopt.doctree
deleted file mode 100644
Binary file lib/cpython-doc/tools/build/doctrees/library/getopt.doctree has changed
diff --git a/lib/cpython-doc/tools/build/doctrees/library/getpass.doctree b/lib/cpython-doc/tools/build/doctrees/library/getpass.doctree
deleted file mode 100644
Binary file lib/cpython-doc/tools/build/doctrees/library/getpass.doctree has changed
diff --git a/lib/cpython-doc/tools/build/doctrees/library/gettext.doctree b/lib/cpython-doc/tools/build/doctrees/library/gettext.doctree
deleted file mode 100644
Binary file lib/cpython-doc/tools/build/doctrees/library/gettext.doctree has changed
diff --git a/lib/cpython-doc/tools/build/doctrees/library/glob.doctree b/lib/cpython-doc/tools/build/doctrees/library/glob.doctree
deleted file mode 100644
Binary file lib/cpython-doc/tools/build/doctrees/library/glob.doctree has changed
diff --git a/lib/cpython-doc/tools/build/doctrees/library/grp.doctree b/lib/cpython-doc/tools/build/doctrees/library/grp.doctree
deleted file mode 100644
Binary file lib/cpython-doc/tools/build/doctrees/library/grp.doctree has changed
diff --git a/lib/cpython-doc/tools/build/doctrees/library/gzip.doctree b/lib/cpython-doc/tools/build/doctrees/library/gzip.doctree
deleted file mode 100644
Binary file lib/cpython-doc/tools/build/doctrees/library/gzip.doctree has changed
diff --git a/lib/cpython-doc/tools/build/doctrees/library/hashlib.doctree b/lib/cpython-doc/tools/build/doctrees/library/hashlib.doctree
deleted file mode 100644
Binary file lib/cpython-doc/tools/build/doctrees/library/hashlib.doctree has changed
diff --git a/lib/cpython-doc/tools/build/doctrees/library/heapq.doctree b/lib/cpython-doc/tools/build/doctrees/library/heapq.doctree
deleted file mode 100644
Binary file lib/cpython-doc/tools/build/doctrees/library/heapq.doctree has changed
diff --git a/lib/cpython-doc/tools/build/doctrees/library/hmac.doctree b/lib/cpython-doc/tools/build/doctrees/library/hmac.doctree
deleted file mode 100644
Binary file lib/cpython-doc/tools/build/doctrees/library/hmac.doctree has changed
diff --git a/lib/cpython-doc/tools/build/doctrees/library/html.doctree b/lib/cpython-doc/tools/build/doctrees/library/html.doctree
deleted file mode 100644
Binary file lib/cpython-doc/tools/build/doctrees/library/html.doctree has changed
diff --git a/lib/cpython-doc/tools/build/doctrees/library/html.entities.doctree b/lib/cpython-doc/tools/build/doctrees/library/html.entities.doctree
deleted file mode 100644
Binary file lib/cpython-doc/tools/build/doctrees/library/html.entities.doctree has changed
diff --git a/lib/cpython-doc/tools/build/doctrees/library/html.parser.doctree b/lib/cpython-doc/tools/build/doctrees/library/html.parser.doctree
deleted file mode 100644
Binary file lib/cpython-doc/tools/build/doctrees/library/html.parser.doctree has changed
diff --git a/lib/cpython-doc/tools/build/doctrees/library/http.client.doctree b/lib/cpython-doc/tools/build/doctrees/library/http.client.doctree
deleted file mode 100644
Binary file lib/cpython-doc/tools/build/doctrees/library/http.client.doctree has changed
diff --git a/lib/cpython-doc/tools/build/doctrees/library/http.cookiejar.doctree b/lib/cpython-doc/tools/build/doctrees/library/http.cookiejar.doctree
deleted file mode 100644
Binary file lib/cpython-doc/tools/build/doctrees/library/http.cookiejar.doctree has changed
diff --git a/lib/cpython-doc/tools/build/doctrees/library/http.cookies.doctree b/lib/cpython-doc/tools/build/doctrees/library/http.cookies.doctree
deleted file mode 100644
Binary file lib/cpython-doc/tools/build/doctrees/library/http.cookies.doctree has changed
diff --git a/lib/cpython-doc/tools/build/doctrees/library/http.server.doctree b/lib/cpython-doc/tools/build/doctrees/library/http.server.doctree
deleted file mode 100644
Binary file lib/cpython-doc/tools/build/doctrees/library/http.server.doctree has changed
diff --git a/lib/cpython-doc/tools/build/doctrees/library/i18n.doctree b/lib/cpython-doc/tools/build/doctrees/library/i18n.doctree
deleted file mode 100644
Binary file lib/cpython-doc/tools/build/doctrees/library/i18n.doctree has changed
diff --git a/lib/cpython-doc/tools/build/doctrees/library/idle.doctree b/lib/cpython-doc/tools/build/doctrees/library/idle.doctree
deleted file mode 100644
Binary file lib/cpython-doc/tools/build/doctrees/library/idle.doctree has changed
diff --git a/lib/cpython-doc/tools/build/doctrees/library/imaplib.doctree b/lib/cpython-doc/tools/build/doctrees/library/imaplib.doctree
deleted file mode 100644
Binary file lib/cpython-doc/tools/build/doctrees/library/imaplib.doctree has changed
diff --git a/lib/cpython-doc/tools/build/doctrees/library/imghdr.doctree b/lib/cpython-doc/tools/build/doctrees/library/imghdr.doctree
deleted file mode 100644
Binary file lib/cpython-doc/tools/build/doctrees/library/imghdr.doctree has changed
diff --git a/lib/cpython-doc/tools/build/doctrees/library/imp.doctree b/lib/cpython-doc/tools/build/doctrees/library/imp.doctree
deleted file mode 100644
Binary file lib/cpython-doc/tools/build/doctrees/library/imp.doctree has changed
diff --git a/lib/cpython-doc/tools/build/doctrees/library/importlib.doctree b/lib/cpython-doc/tools/build/doctrees/library/importlib.doctree
deleted file mode 100644
Binary file lib/cpython-doc/tools/build/doctrees/library/importlib.doctree has changed
diff --git a/lib/cpython-doc/tools/build/doctrees/library/index.doctree b/lib/cpython-doc/tools/build/doctrees/library/index.doctree
deleted file mode 100644
Binary file lib/cpython-doc/tools/build/doctrees/library/index.doctree has changed
diff --git a/lib/cpython-doc/tools/build/doctrees/library/inspect.doctree b/lib/cpython-doc/tools/build/doctrees/library/inspect.doctree
deleted file mode 100644
Binary file lib/cpython-doc/tools/build/doctrees/library/inspect.doctree has changed
diff --git a/lib/cpython-doc/tools/build/doctrees/library/internet.doctree b/lib/cpython-doc/tools/build/doctrees/library/internet.doctree
deleted file mode 100644
Binary file lib/cpython-doc/tools/build/doctrees/library/internet.doctree has changed
diff --git a/lib/cpython-doc/tools/build/doctrees/library/intro.doctree b/lib/cpython-doc/tools/build/doctrees/library/intro.doctree
deleted file mode 100644
Binary file lib/cpython-doc/tools/build/doctrees/library/intro.doctree has changed
diff --git a/lib/cpython-doc/tools/build/doctrees/library/io.doctree b/lib/cpython-doc/tools/build/doctrees/library/io.doctree
deleted file mode 100644
Binary file lib/cpython-doc/tools/build/doctrees/library/io.doctree has changed
diff --git a/lib/cpython-doc/tools/build/doctrees/library/ipc.doctree b/lib/cpython-doc/tools/build/doctrees/library/ipc.doctree
deleted file mode 100644
Binary file lib/cpython-doc/tools/build/doctrees/library/ipc.doctree has changed
diff --git a/lib/cpython-doc/tools/build/doctrees/library/itertools.doctree b/lib/cpython-doc/tools/build/doctrees/library/itertools.doctree
deleted file mode 100644
Binary file lib/cpython-doc/tools/build/doctrees/library/itertools.doctree has changed
diff --git a/lib/cpython-doc/tools/build/doctrees/library/json.doctree b/lib/cpython-doc/tools/build/doctrees/library/json.doctree
deleted file mode 100644
Binary file lib/cpython-doc/tools/build/doctrees/library/json.doctree has changed
diff --git a/lib/cpython-doc/tools/build/doctrees/library/keyword.doctree b/lib/cpython-doc/tools/build/doctrees/library/keyword.doctree
deleted file mode 100644
Binary file lib/cpython-doc/tools/build/doctrees/library/keyword.doctree has changed
diff --git a/lib/cpython-doc/tools/build/doctrees/library/language.doctree b/lib/cpython-doc/tools/build/doctrees/library/language.doctree
deleted file mode 100644
Binary file lib/cpython-doc/tools/build/doctrees/library/language.doctree has changed
diff --git a/lib/cpython-doc/tools/build/doctrees/library/linecache.doctree b/lib/cpython-doc/tools/build/doctrees/library/linecache.doctree
deleted file mode 100644
Binary file lib/cpython-doc/tools/build/doctrees/library/linecache.doctree has changed
diff --git a/lib/cpython-doc/tools/build/doctrees/library/locale.doctree b/lib/cpython-doc/tools/build/doctrees/library/locale.doctree
deleted file mode 100644
Binary file lib/cpython-doc/tools/build/doctrees/library/locale.doctree has changed
diff --git a/lib/cpython-doc/tools/build/doctrees/library/logging.config.doctree b/lib/cpython-doc/tools/build/doctrees/library/logging.config.doctree
deleted file mode 100644
Binary file lib/cpython-doc/tools/build/doctrees/library/logging.config.doctree has changed
diff --git a/lib/cpython-doc/tools/build/doctrees/library/logging.doctree b/lib/cpython-doc/tools/build/doctrees/library/logging.doctree
deleted file mode 100644
Binary file lib/cpython-doc/tools/build/doctrees/library/logging.doctree has changed
diff --git a/lib/cpython-doc/tools/build/doctrees/library/logging.handlers.doctree b/lib/cpython-doc/tools/build/doctrees/library/logging.handlers.doctree
deleted file mode 100644
Binary file lib/cpython-doc/tools/build/doctrees/library/logging.handlers.doctree has changed
diff --git a/lib/cpython-doc/tools/build/doctrees/library/lzma.doctree b/lib/cpython-doc/tools/build/doctrees/library/lzma.doctree
deleted file mode 100644
Binary file lib/cpython-doc/tools/build/doctrees/library/lzma.doctree has changed
diff --git a/lib/cpython-doc/tools/build/doctrees/library/macpath.doctree b/lib/cpython-doc/tools/build/doctrees/library/macpath.doctree
deleted file mode 100644
Binary file lib/cpython-doc/tools/build/doctrees/library/macpath.doctree has changed
diff --git a/lib/cpython-doc/tools/build/doctrees/library/mailbox.doctree b/lib/cpython-doc/tools/build/doctrees/library/mailbox.doctree
deleted file mode 100644
Binary file lib/cpython-doc/tools/build/doctrees/library/mailbox.doctree has changed
diff --git a/lib/cpython-doc/tools/build/doctrees/library/mailcap.doctree b/lib/cpython-doc/tools/build/doctrees/library/mailcap.doctree
deleted file mode 100644
Binary file lib/cpython-doc/tools/build/doctrees/library/mailcap.doctree has changed
diff --git a/lib/cpython-doc/tools/build/doctrees/library/markup.doctree b/lib/cpython-doc/tools/build/doctrees/library/markup.doctree
deleted file mode 100644
Binary file lib/cpython-doc/tools/build/doctrees/library/markup.doctree has changed
diff --git a/lib/cpython-doc/tools/build/doctrees/library/marshal.doctree b/lib/cpython-doc/tools/build/doctrees/library/marshal.doctree
deleted file mode 100644
Binary file lib/cpython-doc/tools/build/doctrees/library/marshal.doctree has changed
diff --git a/lib/cpython-doc/tools/build/doctrees/library/math.doctree b/lib/cpython-doc/tools/build/doctrees/library/math.doctree
deleted file mode 100644
Binary file lib/cpython-doc/tools/build/doctrees/library/math.doctree has changed
diff --git a/lib/cpython-doc/tools/build/doctrees/library/mimetypes.doctree b/lib/cpython-doc/tools/build/doctrees/library/mimetypes.doctree
deleted file mode 100644
Binary file lib/cpython-doc/tools/build/doctrees/library/mimetypes.doctree has changed
diff --git a/lib/cpython-doc/tools/build/doctrees/library/misc.doctree b/lib/cpython-doc/tools/build/doctrees/library/misc.doctree
deleted file mode 100644
Binary file lib/cpython-doc/tools/build/doctrees/library/misc.doctree has changed
diff --git a/lib/cpython-doc/tools/build/doctrees/library/mm.doctree b/lib/cpython-doc/tools/build/doctrees/library/mm.doctree
deleted file mode 100644
Binary file lib/cpython-doc/tools/build/doctrees/library/mm.doctree has changed
diff --git a/lib/cpython-doc/tools/build/doctrees/library/mmap.doctree b/lib/cpython-doc/tools/build/doctrees/library/mmap.doctree
deleted file mode 100644
Binary file lib/cpython-doc/tools/build/doctrees/library/mmap.doctree has changed
diff --git a/lib/cpython-doc/tools/build/doctrees/library/modulefinder.doctree b/lib/cpython-doc/tools/build/doctrees/library/modulefinder.doctree
deleted file mode 100644
Binary file lib/cpython-doc/tools/build/doctrees/library/modulefinder.doctree has changed
diff --git a/lib/cpython-doc/tools/build/doctrees/library/modules.doctree b/lib/cpython-doc/tools/build/doctrees/library/modules.doctree
deleted file mode 100644
Binary file lib/cpython-doc/tools/build/doctrees/library/modules.doctree has changed
diff --git a/lib/cpython-doc/tools/build/doctrees/library/msilib.doctree b/lib/cpython-doc/tools/build/doctrees/library/msilib.doctree
deleted file mode 100644
Binary file lib/cpython-doc/tools/build/doctrees/library/msilib.doctree has changed
diff --git a/lib/cpython-doc/tools/build/doctrees/library/msvcrt.doctree b/lib/cpython-doc/tools/build/doctrees/library/msvcrt.doctree
deleted file mode 100644
Binary file lib/cpython-doc/tools/build/doctrees/library/msvcrt.doctree has changed
diff --git a/lib/cpython-doc/tools/build/doctrees/library/multiprocessing.doctree b/lib/cpython-doc/tools/build/doctrees/library/multiprocessing.doctree
deleted file mode 100644
Binary file lib/cpython-doc/tools/build/doctrees/library/multiprocessing.doctree has changed
diff --git a/lib/cpython-doc/tools/build/doctrees/library/netdata.doctree b/lib/cpython-doc/tools/build/doctrees/library/netdata.doctree
deleted file mode 100644
Binary file lib/cpython-doc/tools/build/doctrees/library/netdata.doctree has changed
diff --git a/lib/cpython-doc/tools/build/doctrees/library/netrc.doctree b/lib/cpython-doc/tools/build/doctrees/library/netrc.doctree
deleted file mode 100644
Binary file lib/cpython-doc/tools/build/doctrees/library/netrc.doctree has changed
diff --git a/lib/cpython-doc/tools/build/doctrees/library/nis.doctree b/lib/cpython-doc/tools/build/doctrees/library/nis.doctree
deleted file mode 100644
Binary file lib/cpython-doc/tools/build/doctrees/library/nis.doctree has changed


More information about the pypy-commit mailing list