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
nexedi
ZODB
Commits
ea91e245
Commit
ea91e245
authored
Feb 09, 2001
by
Jim Fulton
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Repred an id in an exception. Thanks to Toby Dickenson for spotting this.
parent
ae21fee9
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 @
ea91e245
...
...
@@ -84,8 +84,8 @@
##############################################################################
"""Database connection support
$Id: Connection.py,v 1.4
4 2001/01/18 18:21:1
9 jim Exp $"""
__version__
=
'$Revision: 1.4
4
$'
[
11
:
-
2
]
$Id: Connection.py,v 1.4
5 2001/02/09 14:11:4
9 jim Exp $"""
__version__
=
'$Revision: 1.4
5
$'
[
11
:
-
2
]
from
cPickleCache
import
PickleCache
from
POSException
import
ConflictError
,
ExportError
...
...
@@ -487,7 +487,7 @@ class Connection(ExportImport.ExportImport):
# notifications between the time we check and the time we
# read.
invalid
=
self
.
_invalid
if
invalid
(
oid
)
or
invalid
(
None
):
raise
ConflictError
,
oid
if
invalid
(
oid
)
or
invalid
(
None
):
raise
ConflictError
,
`oid`
file
=
StringIO
(
p
)
unpickler
=
Unpickler
(
file
)
...
...
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