[Zodb-checkins] CVS: ZODB3 - .cvsignore:1.4 MANIFEST:1.8 MANIFEST.in:1.3 NEWS.txt:1.19 README.txt:1.8 setup.py:1.21 test.py:1.20
Guido van Rossum
guido@python.org
Fri, 4 Oct 2002 20:38:13 -0400
Update of /cvs-repository/ZODB3
In directory cvs.zope.org:/tmp/cvs-serv28266
Modified Files:
.cvsignore MANIFEST MANIFEST.in NEWS.txt README.txt setup.py
test.py
Log Message:
Merge changes from release branch into trunk.
=== ZODB3/.cvsignore 1.3 => 1.4 ===
--- ZODB3/.cvsignore:1.3 Mon Feb 11 18:27:38 2002
+++ ZODB3/.cvsignore Fri Oct 4 20:38:12 2002
@@ -1,2 +1,3 @@
dist
build
+*.html
=== ZODB3/MANIFEST 1.7 => 1.8 ===
--- ZODB3/MANIFEST:1.7 Mon Sep 16 09:44:03 2002
+++ ZODB3/MANIFEST Fri Oct 4 20:38:12 2002
@@ -5,6 +5,7 @@
ZEO-NEWS.txt
setup.py
test.py
+typeobject.patch
BTrees/BTreeItemsTemplate.c
BTrees/BTreeModuleTemplate.c
BTrees/BTreeTemplate.c
@@ -78,6 +79,7 @@
Doc/guide/zodb/node2.html
Doc/guide/zodb/node20.html
Doc/guide/zodb/node21.html
+Doc/guide/zodb/node22.html
Doc/guide/zodb/node23.html
Doc/guide/zodb/node24.html
Doc/guide/zodb/node25.html
@@ -199,6 +201,7 @@
ZEO/util.py
ZEO/tests/Cache.py
ZEO/tests/CommitLockTests.py
+ZEO/tests/ConnectionTests.py
ZEO/tests/TestThread.py
ZEO/tests/ThreadTests.py
ZEO/tests/__init__.py
@@ -207,6 +210,7 @@
ZEO/tests/speed.py
ZEO/tests/stress.py
ZEO/tests/testClientCache.py
+ZEO/tests/testConnection.py
ZEO/tests/testStart.py
ZEO/tests/testTransactionBuffer.py
ZEO/tests/testZEO.py
@@ -285,6 +289,10 @@
ZODB/tests/testUtils.py
ZODB/tests/testZODB.py
ZODB/tests/testfsIndex.py
+ZopeUndo/Prefix.py
+ZopeUndo/__init__.py
+ZopeUndo/tests/__init__.py
+ZopeUndo/tests/testPrefix.py
bsddb3Storage/MANIFEST
bsddb3Storage/NEWS
bsddb3Storage/README
=== ZODB3/MANIFEST.in 1.2 => 1.3 ===
--- ZODB3/MANIFEST.in:1.2 Mon Sep 16 09:44:03 2002
+++ ZODB3/MANIFEST.in Fri Oct 4 20:38:12 2002
@@ -1,4 +1,5 @@
include MANIFEST
+include typeobject.patch
include *.txt
include test.py
include BTrees/*.c
=== ZODB3/NEWS.txt 1.18 => 1.19 ===
--- ZODB3/NEWS.txt:1.18 Fri Oct 4 15:21:09 2002
+++ ZODB3/NEWS.txt Fri Oct 4 20:38:12 2002
@@ -1,5 +1,6 @@
What's new in ZODB3 3.1 beta 2?
===============================
+Release date: 4-Oct-2002
A few bugs have been fixed, some that were found with the help of
Neal Norwitz's PyChecker.
@@ -24,6 +25,15 @@
Many bugs were fixed in ZEO, and a couple of features added. See
`ZEO-NEWS.txt` for details.
+The ZODB guide included in the Doc directory has been updated. It is
+still incomplete, but most of the references to old ZODB packages have
+been removed. There is a new section that briefly explains how to use
+BTrees.
+
+The zeoup.py tool connects using a read-only connection when --nowrite
+is specifified. This feature is useful for checking on read-only ZEO
+servers.
+
What's new in ZODB3 3.1 beta 1?
===============================
Release date: 12-Sep-2002
@@ -119,7 +129,7 @@
Berkeley Storages
-----------------
-Berkeley storage constructors now take an optional `config' argument,
+Berkeley storage constructors now take an optional `config` argument,
which is an instance whose attributes can be used to configure such
BerkeleyDB policies as an automatic checkpointing interval, lock table
sizing, and the log directory. See bsddb3Storage/BerkeleyBase.py for
=== ZODB3/README.txt 1.7 => 1.8 ===
--- ZODB3/README.txt:1.7 Tue Sep 24 23:39:40 2002
+++ ZODB3/README.txt Fri Oct 4 20:38:12 2002
@@ -1,4 +1,4 @@
-ZODB3 3.1 beta 1
+ZODB3 3.1 beta 2
================
Please see the LICENSE.txt file for terms and conditions.
@@ -20,9 +20,8 @@
2.3. For best results, we recommend using Python 2.1.3 or Python 2.2.1.
Our primary development platform is Linux, but we also test on Windows
-2000 and 98. We expect that this release works on most platforms,
-although we have seen some problems with the test suite on Windows.
-(In particular, it can take a long time to run the ZEO tests.)
+2000 and 98. The test suite should pass without error on all of these
+platforms, although it can take a long time on Windows.
The components you get with the ZODB3 release are as follows:
@@ -82,7 +81,7 @@
Type "help", "copyright", "credits" or "license" for more information.
>>> import ZODB
>>> ZODB.__version__
- '3.1b1'
+ '3.1b2'
To install ZODB3 using ZEO version 1 instead of version 2, pass the
``--with-zeo1`` argument to setup.py when you build and install::
@@ -106,8 +105,7 @@
third-party libraries. On Windows, the tests can take much longer to
execute::
-
- Ran 956 tests in 153.175s
+ Ran 975 tests in 161.
OK
@@ -148,7 +146,7 @@
instead of ExtensionClass. So we're calling this release "ZODB3". We
settled on the 3.1 version number so that we don't create the
impression that this version of ZODB is the same as the one Jim
-described as ZODB 3 in 2002.
+described as ZODB 3 in 2000.
More information
=== ZODB3/setup.py 1.20 => 1.21 ===
--- ZODB3/setup.py:1.20 Thu Oct 3 14:01:08 2002
+++ ZODB3/setup.py Fri Oct 4 20:38:12 2002
@@ -176,7 +176,7 @@
doclines = __doc__.split("\n")
setup(name="ZODB3",
- version="3.1b1+",
+ version="3.1b2",
maintainer="Zope Corporation",
maintainer_email="zodb-dev@zope.org",
url = "http://www.zope.org/Wikis/ZODB/FrontPage",
=== ZODB3/test.py 1.19 => 1.20 ===
--- ZODB3/test.py:1.19 Mon Sep 30 14:34:01 2002
+++ ZODB3/test.py Fri Oct 4 20:38:12 2002
@@ -46,7 +46,7 @@
disable garbage collection altogether.
-G gc_option
- Set the garbage collection debugging glags. The argument must be one
+ Set the garbage collection debugging flags. The argument must be one
of the DEBUG_ flags defined bythe Python gc module. Multiple options
can be specified by using "-G OPTION1 -G OPTION2."