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
90682f31
Commit
90682f31
authored
Dec 29, 2003
by
Tim Peters
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Removed legacy [Uup]64 code (for use under Pythons before 2.2).
parent
634c5d32
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
38 deletions
+10
-38
src/ZODB/utils.py
src/ZODB/utils.py
+10
-38
No files found.
src/ZODB/utils.py
View file @
90682f31
...
@@ -22,48 +22,20 @@ from types import StringType
...
@@ -22,48 +22,20 @@ from types import StringType
z64
=
'
\
0
'
*
8
z64
=
'
\
0
'
*
8
t32
=
1L
<<
32
t32
=
1L
<<
32
if
sys
.
hexversion
>=
0x02020000
:
assert
sys
.
hexversion
>=
0x02020000
# Note that the distinction between ints and longs is blurred in
# The distinction between ints and longs is blurred in Python 2.2,
# Python 2.2. So make u64() and U64()
the same.
# so u64() are U64() really
the same.
def
p64
(
v
):
def
p64
(
v
):
"""Pack an integer or long into a 8-byte string"""
"""Pack an integer or long into a 8-byte string"""
return
pack
(
">Q"
,
v
)
return
pack
(
">Q"
,
v
)
def
u64
(
v
):
def
u64
(
v
):
"""Unpack an 8-byte string into a 64-bit long integer."""
"""Unpack an 8-byte string into a 64-bit long integer."""
return
unpack
(
">Q"
,
v
)[
0
]
return
unpack
(
">Q"
,
v
)[
0
]
U64
=
u64
U64
=
u64
else
:
def
p64
(
v
):
"""Pack an integer or long into a 8-byte string"""
if
v
<
t32
:
h
=
0
else
:
h
,
v
=
divmod
(
v
,
t32
)
return
pack
(
">II"
,
h
,
v
)
def
u64
(
v
):
"""Unpack an 8-byte string into a 64-bit (or long) integer."""
h
,
v
=
unpack
(
">ii"
,
v
)
if
v
<
0
:
v
=
t32
+
v
if
h
:
if
h
<
0
:
h
=
t32
+
h
v
=
(
long
(
h
)
<<
32
)
+
v
return
v
def
U64
(
v
):
"""Same as u64 but always returns a long."""
h
,
v
=
unpack
(
">II"
,
v
)
if
h
:
v
=
(
long
(
h
)
<<
32
)
+
v
return
v
def
cp
(
f1
,
f2
,
l
):
def
cp
(
f1
,
f2
,
l
):
read
=
f1
.
read
read
=
f1
.
read
...
...
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