From: Neal Norwitz Date: Thu, 22 Jun 2006 06:30:50 +0000 (+0000) Subject: Copy the wsgiref package during make install. X-Git-Tag: v2.5b2~141 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=60373cd2449215c20375cdfc032129dc8caefa44;p=thirdparty%2FPython%2Fcpython.git Copy the wsgiref package during make install. --- diff --git a/Makefile.pre.in b/Makefile.pre.in index d9c6c5f9f45f..11a7113fc2e0 100644 --- a/Makefile.pre.in +++ b/Makefile.pre.in @@ -708,7 +708,7 @@ LIBSUBDIRS= lib-old lib-tk site-packages test test/output test/data \ encodings compiler hotshot \ email email/mime email/test email/test/data \ sqlite3 sqlite3/test \ - logging bsddb bsddb/test csv \ + logging bsddb bsddb/test csv wsgiref \ ctypes ctypes/test ctypes/macholib idlelib idlelib/Icons \ distutils distutils/command distutils/tests $(XMLLIBSUBDIRS) \ setuptools setuptools/command setuptools/tests setuptools.egg-info \ diff --git a/Misc/NEWS b/Misc/NEWS index 746bbccfedf4..d02f40fd6870 100644 --- a/Misc/NEWS +++ b/Misc/NEWS @@ -19,6 +19,8 @@ Library - The compiler module now correctly compiles the new try-except-finally statement (bug #1509132). +- The wsgiref package is now installed properly on Unix. + What's New in Python 2.5 beta 1?