- 07 Apr, 2003 2 commits
-
-
Barry Warsaw authored
bytesread accumulator, not the chunklen which is the number of bytes we wanted to read.
-
Jeremy Hylton authored
-
- 04 Apr, 2003 3 commits
-
-
Jeremy Hylton authored
XXX Not sure where this macro is used or what kind of failures this bug caused.
-
Richard Jones authored
-
Richard Jones authored
I've fixed the various scripts etc. in the CVS so that I can now install a ZEO client/server setup. The way it actually ended up working is: - runzope.py and zopectl.py are moved to Zope/Startup/run.py and Zope/zdaemon/zopectl.py respectively - bin/mkzopeinstance now takes a "-z/--zeo host:port" which sets up a custom_zodb.py in the new zope instance home - bin/mkzeoinstance now overrides less, because... - ZEO/mkzeoinst.py generates an additional script, runzeo, which is the "runner" for the ZEO server. Both it an the zeoctl script need to know about the ZOPE_HOME, so that's been added to the scripts (via the params) - fixed setup.py so it installed ZEO/schema.xml
-
- 03 Apr, 2003 1 commit
-
-
Richard Jones authored
- the scripts won't be in the user's $PATH, so override that lookup in from mkzeoinst.py in the mkzeoinstance script - the scripts won't be executable, so prepend commands with $python
-
- 02 Apr, 2003 1 commit
-
-
Jeremy Hylton authored
The implementation is to make the reference in the cache "ring" a new reference rather than a borrowed reference. It is the intent of the cache to keep N recently used objects in memory, regardless of whether they are currently referenced. The goal is to avoid the cost of recreating the objects, based on the assumption that they are likely to be used again soon.
-
- 01 Apr, 2003 11 commits
-
-
Jeremy Hylton authored
The cache behaves differently now; it doesn't keep objects alive artificially. We should write some new tests that verify behavior with objects that are kept alive by external references.
-
Jeremy Hylton authored
-
Jeremy Hylton authored
-
Jeremy Hylton authored
details.
-
Jeremy Hylton authored
The cache is intended to keep weak references to objects. An object should be deallocated when the only references to it are in the cache. If an object is unghostified and added to the list of live objects, the list should have a borrowed reference. Otherwise, the cache will keep the object alive after all other references have disappeared.
-
Jeremy Hylton authored
time. Instead use std PyDict_GetItem() and incref only when necessary.
-
Jeremy Hylton authored
The cache decrefed it in percachedel.
-
Jeremy Hylton authored
PyDict_DelItem() will undo the other INCREF.
-
Jeremy Hylton authored
-
Jeremy Hylton authored
Decref its reference to the cache. In a debug build, account for the two bogus additions to _Py_RefTotal. Also, reindent initcPickleCache().
-
Barry Warsaw authored
-
- 31 Mar, 2003 2 commits
-
-
Jeremy Hylton authored
-
Jeremy Hylton authored
Remove object_from_oid() which appeared to be mis-used about half the time. Instead use std PyDict_GetItem() and incref only when necessary. Make sure an object's reference to its cache is decref'd when the object is deallocated. This change seems to eliminate leaking pickle caches. Remaining mystery: Why do objects stay in the cache even when there are no references to them?
-
- 26 Mar, 2003 1 commit
-
-
Fred Drake authored
-
- 25 Mar, 2003 2 commits
-
-
Fred Drake authored
-
Fred Drake authored
release.
-
- 24 Mar, 2003 7 commits
-
-
Fred Drake authored
-
Fred Drake authored
-
Fred Drake authored
descriptions.
-
Fred Drake authored
and are of questionable value. "constructor" is also generally unsafe; applications that need it can provide their own version of this if necessary.
-
Fred Drake authored
- simplify document structure at one point
-
Fred Drake authored
-
Fred Drake authored
- fixed datatype of the values for "handler" attributes - removed/commented out all mentions of schema component extension; that's really not complete and should probably be thought through again - moved docs for legacy API out; these should not be generally documented - misc. small fixes
-
- 21 Mar, 2003 1 commit
-
-
Fred Drake authored
-
- 20 Mar, 2003 1 commit
-
-
Jeremy Hylton authored
The manager should raise an exception in its prepare() method rather than returning a boolean to indicate failure. Rationale: The txn manager can't raise a reasonable exception, because it doesn't know what the data manager couldn't prepare.
-
- 17 Mar, 2003 8 commits
-
-
Fred Drake authored
It may be reasonable to change this more, but the benefits aren't clear. (These changes will be used from the new-install-branch.)
-
Fred Drake authored
make it easier to re-locate an instance.
-
Fred Drake authored
-
Jeremy Hylton authored
-
Jeremy Hylton authored
-
Jeremy Hylton authored
Don't ever stop after the first object. It leaves all the other objects in the version unmodified.
-
Jeremy Hylton authored
-
Jeremy Hylton authored
Fix edge case in pack() -- backpointer to object created in version.
-