- 21 Nov, 2002 1 commit
-
-
Guido van Rossum authored
rilog()) into methods, so the log message can include the storage name. - Change the trace filename to include a hyphen and the storage name. This addresses ZODB SF bug 641925.
-
- 20 Nov, 2002 2 commits
-
-
Guido van Rossum authored
ConnectThread from hanging the application on exit.
-
Guido van Rossum authored
Add -S to usage message.
-
- 19 Nov, 2002 8 commits
-
-
Guido van Rossum authored
-
Guido van Rossum authored
Rephrase error message about address in use.
-
Guido van Rossum authored
zdaemon/zdaemon.py. Also get rid of the sys.path manipulation; it doesn't work (since the C extensions are not there).
-
Guido van Rossum authored
-
Guido van Rossum authored
You can now do this with the -u USER zdaemon/zdaemon.py.
-
Tim Peters authored
that don't use it -- gcc complains if you do.
-
Guido van Rossum authored
-
Guido van Rossum authored
seems to work.
-
- 18 Nov, 2002 8 commits
-
-
Jeremy Hylton authored
XXX Not sure if berkeley still works.
-
Jeremy Hylton authored
-
Jeremy Hylton authored
Put a MinPO in the root, so that we don't actually modify the root. Print the elapsed time for zeoup to run.
-
Jeremy Hylton authored
-
Jeremy Hylton authored
-
Jeremy Hylton authored
Indentation of the 2nd line is a lose, because the 2nd line can be long. Instead put a blank line after a record.
-
Jeremy Hylton authored
Add fstools module with simple utilities for jumping around in a Data.fs.
-
Jeremy Hylton authored
-
- 15 Nov, 2002 3 commits
-
-
Barry Warsaw authored
storage and creates a new one. We need this here so Berkeley storage tests can do something different.
-
Barry Warsaw authored
zodb3-release branch.
-
Barry Warsaw authored
ZODB3-restore-debug branch, and genericized, which checks for proper backpointers when recovering undos w/ commit and abort versions.
-
- 13 Nov, 2002 4 commits
-
-
Jeremy Hylton authored
-
Guido van Rossum authored
-
Toby Dickenson authored
-
Toby Dickenson authored
Merged toby-extension-method-branch - ZEO now asks its storages if there are extra methods that should be proxied by the ClientStorage. This is useful for storages which have features not covered by the standard storage API
-
- 12 Nov, 2002 2 commits
-
-
Barry Warsaw authored
-
Guido van Rossum authored
socket errors from the recv() call and return early in that case.
-
- 07 Nov, 2002 5 commits
-
-
Fred Drake authored
-
Fred Drake authored
sure to state the "container" attribute is optional.
-
Fred Drake authored
-
Fred Drake authored
considered "complete".
-
Fred Drake authored
pointed out, interpolation is a bad name for this, since it implies something different.
-
- 05 Nov, 2002 7 commits
-
-
Barry Warsaw authored
interesting root reachability properties.
-
Jeremy Hylton authored
and eliminate default argument hack.
-
Jeremy Hylton authored
Remove useless register_subsystem() calls. Define PackError instead of raising string exception. Remove unused _stuff argument from load(). Remove unused tid argument from _txn_undo_write(). Replace seek() and unused read()s with single read(). Remove unused local variables.
-
Jeremy Hylton authored
-
Jeremy Hylton authored
Also, add sanity checks in _getVersion() and _getSerial().
-
Guido van Rossum authored
log: Fix an old bug in poll(). When a signal is handled while we're blocked in select(), this will raise select.error with errno set to EINTR. The except clauses correctly ignores this error, but the rest of the logic will then call read() for all objects in select's *input* list of read file descriptors. Then when an object's read_handler() is naive, it will call recv() on its socket, which will raise an IOError, and then asyncore decides to close the socket. To fix this, we simply return in this case. Rather than incorporating a fixed copy of asyncore.py in Zope2 and ZODB3, I'm incorporating a fixed copy of just asyncore.poll() in this file, since we already have a copy of asyncore.loop() here.
-
Guido van Rossum authored
-