Commit 4b0e9511 authored by Jeremy Hylton's avatar Jeremy Hylton

use builtin type names

parent 1565e139
...@@ -18,10 +18,9 @@ purposes. It acts like a memo for unpickling. It also keeps recent ...@@ -18,10 +18,9 @@ purposes. It acts like a memo for unpickling. It also keeps recent
objects in memory under the assumption that they may be used again. objects in memory under the assumption that they may be used again.
""" """
import gc
import time import time
import types
import unittest import unittest
import gc
import ZODB import ZODB
import ZODB.MappingStorage import ZODB.MappingStorage
...@@ -81,8 +80,8 @@ class DBMethods(CacheTestBase): ...@@ -81,8 +80,8 @@ class DBMethods(CacheTestBase):
def checkCacheDetail(self): def checkCacheDetail(self):
for name, count in self.db.cacheDetail(): for name, count in self.db.cacheDetail():
self.assert_(isinstance(name, types.StringType)) self.assert_(isinstance(name, str))
self.assert_(isinstance(count, types.IntType)) self.assert_(isinstance(count, int))
def checkCacheExtremeDetail(self): def checkCacheExtremeDetail(self):
expected = ['conn_no', 'id', 'oid', 'rc', 'klass', 'state'] expected = ['conn_no', 'id', 'oid', 'rc', 'klass', 'state']
......
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