diff options
author | Tim Peters <tim.peters@gmail.com> | 2003-01-02 16:02:27 (GMT) |
---|---|---|
committer | Tim Peters <tim.peters@gmail.com> | 2003-01-02 16:02:27 (GMT) |
commit | bbc5d1674b07e8d87d18fe661baab05a4d59e2a4 (patch) | |
tree | 5418e99d2d549a4558876aca8d63e335594b32aa | |
parent | e149798c7fa878bb8b81f7fcb6d9f1080dee60d2 (diff) | |
download | cpython-bbc5d1674b07e8d87d18fe661baab05a4d59e2a4.zip cpython-bbc5d1674b07e8d87d18fe661baab05a4d59e2a4.tar.gz cpython-bbc5d1674b07e8d87d18fe661baab05a4d59e2a4.tar.bz2 |
SF bug 660795: logging missing from Python 2.3a1 for Windows.
Added the logging package. In the meantime, Neal Norwitz added a
test_logging.py to the std test suite, which would have caught this
oversight in the Windows installer.
-rw-r--r-- | Misc/NEWS | 7 | ||||
-rw-r--r-- | PCbuild/python20.wse | 8 |
2 files changed, 13 insertions, 2 deletions
@@ -56,6 +56,9 @@ Tests Windows ------- +- The new logging package is now installed by the Windows installer. It + wasn't in 2.3a1 due to oversight. + Mac --- @@ -143,7 +146,7 @@ Core and builtins Jython 2.1. - PEP 302 has been accepted. Although it was inititally developed to - support zipimport, it offers a new, general import hook mechanism. + support zipimport, it offers a new, general import hook mechanism. Several new variables have been added to the sys module: sys.meta_path, sys.path_hooks, and sys.path_importer_cache; these make extending the import statement much more convenient than @@ -1078,7 +1081,7 @@ Mac with an interpreter living in such a .app bundle, this interpreter should be used to run any Python script using the window manager (including Tkinter or wxPython scripts). - + - Most of Mac/Lib has moved to Lib/plat-mac, which is again used both in MacPython-OSX and MacPython-OS9. The only modules remaining in Mac/Lib are specifically for MacPython-OS9 (CFM support, preference resources, etc). diff --git a/PCbuild/python20.wse b/PCbuild/python20.wse index f2a9ca4..02312f8 100644 --- a/PCbuild/python20.wse +++ b/PCbuild/python20.wse @@ -2014,6 +2014,14 @@ end item: Remark end item: Install File + Source=..\lib\logging\*.py + Destination=%MAINDIR%\Lib\logging + Description=Logging package + Flags=0000000000000010 +end +item: Remark +end +item: Install File Source=..\lib\site-packages\readme Destination=%MAINDIR%\Lib\site-packages\README.txt Description=Site packages |