Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Z
ZODB
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Kirill Smelkov
ZODB
Commits
052597b1
Commit
052597b1
authored
Feb 27, 2004
by
Jeremy Hylton
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Initialize _opened in __init__ instead of as a class variable.
parent
c096d901
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
src/ZODB/Connection.py
src/ZODB/Connection.py
+3
-3
No files found.
src/ZODB/Connection.py
View file @
052597b1
...
@@ -13,7 +13,7 @@
...
@@ -13,7 +13,7 @@
##############################################################################
##############################################################################
"""Database connection support
"""Database connection support
$Id: Connection.py,v 1.12
8 2004/02/27 14:46:19
jeremy Exp $"""
$Id: Connection.py,v 1.12
9 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.12
8 2004/02/27 14:46:19
jeremy Exp $
$Id: Connection.py,v 1.12
9 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
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment