- 28 Jan, 2003 2 commits
-
-
Florent Guillaume authored
-
Sidnei da Silva authored
-
- 27 Jan, 2003 14 commits
-
-
Guido van Rossum authored
Reduced the size of the password in testLongPassword() so that that test doesn't take a minute or more.
-
Barry Warsaw authored
-
Barry Warsaw authored
-
Barry Warsaw authored
-
Barry Warsaw authored
-
Barry Warsaw authored
-
Barry Warsaw authored
-
Barry Warsaw authored
version string.
-
Barry Warsaw authored
_version_check(): Backport the setting up and checking of the storage version string.
-
Fred Drake authored
-
Fred Drake authored
-
Fred Drake authored
-
Fred Drake authored
-
Fred Drake authored
-
- 24 Jan, 2003 3 commits
-
-
Evan Simpson authored
-
Guido van Rossum authored
-
Andreas Jung authored
-
- 23 Jan, 2003 11 commits
-
-
Fred Drake authored
-
Fred Drake authored
the tests.
-
Fred Drake authored
same results regardless of case.
-
Guido van Rossum authored
(1) Change the mapping from zLOG levels to logging levels to use custom intermediary levels 15 and 5 for BLATHER and TRACE, rather than using a confusing skewed mapping. (2) In the ZConfig datatype definition for a logging level, added 'blather' and 'trace' to the level names, added 'warning' as an alias for 'warn', change 'all' to mean 1, and add 'notset' to mean 0. The semantics of NOTSET are very different than those of 1; setting a logger's level to NOTSET searches for a parent logger with a nonzero level. The root of all loggers is initialized with WARN as its level, so setting the level to NOTSET effectively sets it to WARN rather than to the most inclusive level! (3) In the schema, change the default level for handlers to notset, so they use their logger's level; the default level for the logger is set to info, corresponding to the old default for STUPID_LOG_SEVERITY.
-
Fred Drake authored
properly, including that use of the these stream names uses a delayed lookup of the streams).
-
Fred Drake authored
-
Andreas Jung authored
This implements: http://lists.zope.org/pipermail/zope-coders/20002-November/002680.html
-
Fred Drake authored
-
Fred Drake authored
configuration files easier to read.
-
Guido van Rossum authored
is piping it to a program that reads logging message from stdin.
-
Fred Drake authored
-
- 22 Jan, 2003 2 commits
-
-
Fred Drake authored
types.
-
Andreas Jung authored
-
- 21 Jan, 2003 8 commits
-
-
Barry Warsaw authored
-
Barry Warsaw authored
bug here, there was a deficiency in zodb_pickle() that will be fixed in StorageTestBase.py
-
Barry Warsaw authored
-
Barry Warsaw authored
for both full and minimal bdb storages.
-
Barry Warsaw authored
added while a pack was stuck between a mark and a sweep, the mark would not have found the new objects as root reachable (because they wouldn't have been stored yet), but the sweep will find then and erroneously delete them. _setupDBs(): Add a _packing flag which gets set whenever we're doing a classic or auto pack _docommit(): When the _packing flag is set, copy all oids in the _oids table to the _packmark table, so any objects added between the mark and sweep phases will not be gc'd. This is fine because if they're still not root reachable by the next gc pass, they'll get collected then. pack(): Set and reset the _packing flag around the calls to _dopack(). Also, get ZERO from the package, and add the `info' table for storage metadata. _docommit(): Fix a reference counting bug caused by not incref'ing the objects referred to by the new pickle of a new object revision.
-
Barry Warsaw authored
added while a pack was stuck between a mark and a sweep, the mark would not have found the new objects as root reachable (because they wouldn't have been stored yet), but the sweep will find then and erroneously delete them. _setupDBs(): Add a _packing flag which gets set whenever we're doing a classic or auto pack _docommit(): When the _packing flag is set, copy all oids in the _oids table to the _packmark table, so any objects added between the mark and sweep phases will not be gc'd. This is fine because if they're still not root reachable by the next gc pass, they'll get collected then. pack(), autopack(): Set and reset the _packing flag around the calls to _dopack().
-
matt@zope.com authored
-
Chris McDonough authored
Small refactoring and bug caught in computation of "plast" which had the potential to cause slowness.
-