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
371f0a1e
Commit
371f0a1e
authored
Oct 14, 2003
by
Jeremy Hylton
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Quick fix for a len() of unsized object problem.
Not sure why this happens.
parent
cf442adf
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
1 deletion
+5
-1
src/ZODB/fsdump.py
src/ZODB/fsdump.py
+5
-1
No files found.
src/ZODB/fsdump.py
View file @
371f0a1e
...
@@ -75,7 +75,11 @@ def fsdump(path, file=None, with_offset=1):
...
@@ -75,7 +75,11 @@ def fsdump(path, file=None, with_offset=1):
if
rec
.
data_txn
:
if
rec
.
data_txn
:
size
=
8
+
len
(
rec
.
version
)
size
=
8
+
len
(
rec
.
version
)
else
:
else
:
size
=
len
(
rec
.
data
)
+
len
(
rec
.
version
)
if
rec
.
data
is
None
:
# XXX why is rec.data None and rec.data_txn False?
size
=
len
(
rec
.
version
)
else
:
size
=
len
(
rec
.
data
)
+
len
(
rec
.
version
)
if
rec
.
version
:
if
rec
.
version
:
size
+=
DATA_VERSION_HDR_LEN
size
+=
DATA_VERSION_HDR_LEN
else
:
else
:
...
...
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