diff -r 5a81a0836da1 Doc/Makefile --- a/Doc/Makefile Mon Sep 10 14:48:43 2012 +0200 +++ b/Doc/Makefile Fri Dec 14 15:52:11 2012 -0500 @@ -58,7 +58,7 @@ update: clean checkout -build: checkout +build: mkdir -p build/$(BUILDER) build/doctrees $(PYTHON) tools/sphinx-build.py $(ALLSPHINXOPTS) @echo diff -r 5a81a0836da1 Doc/library/hashlib.rst --- a/Doc/library/hashlib.rst Mon Sep 10 14:48:43 2012 +0200 +++ b/Doc/library/hashlib.rst Fri Dec 14 15:52:11 2012 -0500 @@ -40,12 +40,12 @@ .. note:: - For better multithreading performance, the Python GIL is released for + For better multithreading performance, the Python :term:`GIL` is released for strings of more than 2047 bytes at object creation or on update. .. note:: - Feeding string objects is to :meth:`update` is not supported, as hashes work + Feeding string objects into :meth:`update` is not supported, as hashes work on bytes, not on characters. .. index:: single: OpenSSL; (use in module hashlib) diff -r 5a81a0836da1 Lib/test/test_socket.py --- a/Lib/test/test_socket.py Mon Sep 10 14:48:43 2012 +0200 +++ b/Lib/test/test_socket.py Fri Dec 14 15:52:11 2012 -0500 @@ -3485,7 +3485,7 @@ def _testClose(self): self.cli.connect((HOST, self.port)) - time.sleep(1.0) + #time.sleep(1.0) @unittest.skipUnless(thread, 'Threading required for this test.') class BasicSocketPairTest(SocketPairTest):