Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Z
ZEO
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
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
ZEO
Commits
ae21fee9
Commit
ae21fee9
authored
Feb 08, 2001
by
Chris McDonough
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Changed wording in undo errors from "undoable transaction" to "nonundoable transaction"
parent
f723678d
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
src/ZODB/FileStorage.py
src/ZODB/FileStorage.py
+4
-4
No files found.
src/ZODB/FileStorage.py
View file @
ae21fee9
...
...
@@ -184,7 +184,7 @@
# may have a back pointer to a version record or to a non-version
# record.
#
__version__
=
'$Revision: 1.
49
$'
[
11
:
-
2
]
__version__
=
'$Revision: 1.
50
$'
[
11
:
-
2
]
import
struct
,
time
,
os
,
bpthread
,
string
,
base64
,
sys
from
struct
import
pack
,
unpack
...
...
@@ -812,7 +812,7 @@ class FileStorage(BaseStorage.BaseStorage):
raise
POSException
.
UndoError
,
'Invalid undo transaction id'
if
h
[
16
]
==
'u'
:
return
if
h
[
16
]
!=
' '
:
raise
POSException
.
UndoError
,
'
U
ndoable transaction'
raise
POSException
.
UndoError
,
'
non-u
ndoable transaction'
tl
=
U64
(
h
[
8
:
16
])
ul
,
dl
,
el
=
unpack
(
">HHH"
,
h
[
17
:
23
])
tend
=
tpos
+
tl
...
...
@@ -828,10 +828,10 @@ class FileStorage(BaseStorage.BaseStorage):
dlen
=
42
+
(
plen
or
8
)
if
vlen
:
dlen
=
dlen
+
(
16
+
vlen
)
if
index_get
(
oid
,
0
)
!=
pos
:
raise
POSException
.
UndoError
,
'
U
ndoable transaction'
raise
POSException
.
UndoError
,
'
non-u
ndoable transaction'
pos
=
pos
+
dlen
if
pos
>
tend
:
raise
POSException
.
UndoError
,
'
U
ndoable transaction'
raise
POSException
.
UndoError
,
'
non-u
ndoable transaction'
t
[
oid
]
=
prev
seek
(
tpos
+
16
)
...
...
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