- 01 May, 2003 3 commits
-
-
Jeremy Hylton authored
-
Tim Peters authored
instead of listcomps. Added new examples. Corrected minor mistakes. Removed the byValue() example and claimed that function is deprecated (it's almost never used, and it's hard to explain exactly what it does).
-
Tim Peters authored
-
- 30 Apr, 2003 2 commits
-
-
Jeremy Hylton authored
Windows will have fsync() starting with 2.2.3.
-
Jeremy Hylton authored
-
- 29 Apr, 2003 2 commits
-
-
John Dahlin authored
-
Jeremy Hylton authored
If asyncore is not running in a separate thread, the client needs to call poll() to perform the IO necessary for cache verification to finish. This allows us to eliminate several calls to sync() in the test suite.
-
- 25 Apr, 2003 1 commit
-
-
Jeremy Hylton authored
-
- 24 Apr, 2003 3 commits
-
-
Jeremy Hylton authored
-
Jeremy Hylton authored
-
Jeremy Hylton authored
-
- 23 Apr, 2003 5 commits
-
-
Jeremy Hylton authored
XXX I've got no idea what this is actually supposed to do. It may be that clearing the old cache isn't safe, but only if it never was. If a non-ghost object is in the cache, it seems that attempts to use it will go through the wrong cache.
-
Jeremy Hylton authored
-
Jeremy Hylton authored
-
Jeremy Hylton authored
Problem reported by Ulla Theiss and diagnosed by Shane Hathaway. The long and short of it is that persistent objects refer to their connection which refers to its cache which refers to the persistent objects. We can't let GC find the cycle because persistent objects are extension class objects, and, thus, don't participate in GC. Add an explicit clear() method that removes non-ghost objects from the ring without going to all the trouble of ghosting them. At some point, they'll just get deallocated (which will ghostify them). A cleared cache has non-ghost objects in the dict that are not in the ring, so we need to add some checks for whether the object is actually in the ring.
-
Jeremy Hylton authored
-
- 22 Apr, 2003 8 commits
-
-
Jeremy Hylton authored
-
Jeremy Hylton authored
-
Jeremy Hylton authored
-
Jeremy Hylton authored
-
Jeremy Hylton authored
-
Jeremy Hylton authored
-
Jeremy Hylton authored
-
Jeremy Hylton authored
-
- 21 Apr, 2003 2 commits
-
-
Fred Drake authored
-
Phillip J. Eby authored
the 'name' attr is '#PCDATA' not '#NMTOKEN', because name fields need to allow the '*' or '+' sign in the content.
-
- 17 Apr, 2003 1 commit
-
-
Guido van Rossum authored
recursively to avoid blowing up when a tuple contains a really long string (e.g. 100 MB in size).
-
- 16 Apr, 2003 1 commit
-
-
Tim Peters authored
-
- 11 Apr, 2003 3 commits
-
-
Tim Peters authored
-
Tim Peters authored
states when the value passed in was of the wrong type (for example, doing b[obj] = 3.7 when b is an OIBTree). This manifested as a refcount leak in the test suite, but could have been much worse (most likely in real life is that a seemingly arbitrary existing key would "go missing").
-
Tim Peters authored
bucket when deleting the first child of a BTree node with more than one child. This caused >600 int objects to leak in the OI and OO flavors of testRemoveSucceeds.
-
- 10 Apr, 2003 1 commit
-
-
Tim Peters authored
BTree_lastBucket(). In unusual cases, this could cause a chain of buckets to leak (the DegenerateBTree tests appeared to be the only ones that provoked this, and there it leaked 285 IISet buckets). Other uses of BTree_lastBucket() appear to be refcount-correct.
-
- 09 Apr, 2003 3 commits
-
-
Jeremy Hylton authored
Don't know what happened, but the tests started running very slowly with Python2.3. Fixed by checking _ready at the start of the loop in _wait() instead of at the bottom. Most of the time _ready is set by the time we start, and no more I/O is going to occur until the client connects; as a result, the tests always sat in pending() until it timed out at 30 seconds.
-
Jeremy Hylton authored
There's a race between closing the storage and shutting down the ConnectThread. If we return here, the ConnectThread does no harm.
-
Jeremy Hylton authored
-
- 08 Apr, 2003 5 commits
-
-
Barry Warsaw authored
-
Barry Warsaw authored
-
Barry Warsaw authored
FileStorage. Fixed this and then had to no-op all the tests that MappingStorage can't possibly pass. I think there may still be problems with BDB which I'll follow up on next.
-
Jeremy Hylton authored
You never need an __del__ to close a file. A file closes itself when it is deallocated. Don't give an object a magic __del__ attribute. It won't work with new-style classes, and it's obscure anyway.
-
Jeremy Hylton authored
The DB's invalidate() method takes a set of oids corresponding to all the changes from a data manager for one transaction. All the objects are invalidated at once. Add a few tests in testZODB of the new code. The tests just cover corner cases, because I can't think of a sensible way to test the atomicity. When it has failed in the past, it's been caused by nearly-impossible to reproduce data races. This fix needs to be backported to Zope 2.6, but only after assessing how significant an impact the API change will have.
-