Commit 2d9b4551 authored by Jeremy Hylton's avatar Jeremy Hylton

Avoid overflow.

parent 2fe24944
...@@ -13,8 +13,8 @@ ...@@ -13,8 +13,8 @@
############################################################################## ##############################################################################
"""Database objects """Database objects
$Id: DB.py,v 1.51 2003/06/24 21:29:54 jim Exp $""" $Id: DB.py,v 1.52 2003/06/24 21:47:50 jeremy Exp $"""
__version__='$Revision: 1.51 $'[11:-2] __version__='$Revision: 1.52 $'[11:-2]
import cPickle, cStringIO, sys, POSException, UndoLogCompatible import cPickle, cStringIO, sys, POSException, UndoLogCompatible
from Connection import Connection from Connection import Connection
...@@ -495,7 +495,7 @@ class DB(UndoLogCompatible.UndoLogCompatible): ...@@ -495,7 +495,7 @@ class DB(UndoLogCompatible.UndoLogCompatible):
except: pass except: pass
del pool[:] del pool[:]
del allocated[:] del allocated[:]
6 6L
def connectionDebugInfo(self): def connectionDebugInfo(self):
r=[] r=[]
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment