Commit 653a17ad authored by Jeremy Hylton's avatar Jeremy Hylton

Initialize _opened in __init__ instead of as a class variable.

parent 66dec481
...@@ -13,7 +13,7 @@ ...@@ -13,7 +13,7 @@
############################################################################## ##############################################################################
"""Database connection support """Database connection support
$Id: Connection.py,v 1.128 2004/02/27 14:46:19 jeremy Exp $""" $Id: Connection.py,v 1.129 2004/02/27 14:54:27 jeremy Exp $"""
import logging import logging
import sys import sys
...@@ -102,7 +102,7 @@ class Connection(ExportImport, object): ...@@ -102,7 +102,7 @@ class Connection(ExportImport, object):
XXX Mention the database pool. XXX Mention the database pool.
$Id: Connection.py,v 1.128 2004/02/27 14:46:19 jeremy Exp $ $Id: Connection.py,v 1.129 2004/02/27 14:54:27 jeremy Exp $
@group User Methods: root, get, add, close, db, sync, isReadOnly, @group User Methods: root, get, add, close, db, sync, isReadOnly,
cacheFullSweep, cacheMinimize, getVersion, modifiedInVersion cacheFullSweep, cacheMinimize, getVersion, modifiedInVersion
...@@ -119,7 +119,6 @@ class Connection(ExportImport, object): ...@@ -119,7 +119,6 @@ class Connection(ExportImport, object):
""" """
_tmp = None _tmp = None
_opened = None
_code_timestamp = 0 _code_timestamp = 0
_transaction = None _transaction = None
_added_during_commit = None _added_during_commit = None
...@@ -134,6 +133,7 @@ class Connection(ExportImport, object): ...@@ -134,6 +133,7 @@ class Connection(ExportImport, object):
self._log = logging.getLogger("zodb.conn") self._log = logging.getLogger("zodb.conn")
self._storage = None self._storage = None
self._opened = None
self._debug_info = () self._debug_info = ()
self._version = version self._version = version
......
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