[Python-checkins] Things to remember when adding *packages* to stdlib

Neal Norwitz nnorwitz at gmail.com
Thu Jun 22 08:35:07 CEST 2006


I believe this change is all that's necessary on the Unix side to
install wsgiref.  Can someone please update the Windows build files to
ensure wsgiref is installed in b2?  Don't forget to update the NEWS
entry too.

Also, all committers and reviewers, try to remember that when a
package (meaning directory) is added to the stdlib, we need to update
Makefile.pre.in and the Windows build files.  (I forgot this time
too.)

Is there some documentation that should be updated as a reminder?
Maybe someone could come up with a heuristic to add to Misc/build.sh
which we could test in there.

n
--

On 6/21/06, neal.norwitz <python-checkins at python.org> wrote:
> Author: neal.norwitz
> Date: Thu Jun 22 08:30:50 2006
> New Revision: 47064
>
> Modified:
>    python/trunk/Makefile.pre.in
>    python/trunk/Misc/NEWS
> Log:
> Copy the wsgiref package during make install.
>
>
>
> Modified: python/trunk/Makefile.pre.in
> ==============================================================================
> --- python/trunk/Makefile.pre.in        (original)
> +++ python/trunk/Makefile.pre.in        Thu Jun 22 08:30:50 2006
> @@ -708,7 +708,7 @@
>                 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 \
>
> Modified: python/trunk/Misc/NEWS
> ==============================================================================
> --- python/trunk/Misc/NEWS      (original)
> +++ python/trunk/Misc/NEWS      Thu Jun 22 08:30:50 2006
> @@ -19,6 +19,8 @@
>  - 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?
> _______________________________________________
> Python-checkins mailing list
> Python-checkins at python.org
> http://mail.python.org/mailman/listinfo/python-checkins
>


More information about the Python-checkins mailing list