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
Joshua
zodb
Commits
1791060f
Commit
1791060f
authored
May 03, 2004
by
Tim Peters
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Separated Python imports from ZODB imports; put all global imports before
the first function defn.
parent
8a332bfa
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
30 additions
and
20 deletions
+30
-20
src/ZODB/fsrecover.py
src/ZODB/fsrecover.py
+30
-20
No files found.
src/ZODB/fsrecover.py
View file @
1791060f
...
@@ -56,13 +56,36 @@ Important: The ZODB package must be importable. You may need to adjust
...
@@ -56,13 +56,36 @@ Important: The ZODB package must be importable. You may need to adjust
#
#
# position to start of input
# position to start of input
# while 1:
# while 1:
# if end of file: break
# if end of file:
# try: copy_transaction
# break
# try:
# copy_transaction
# except:
# except:
# scan for transaction
# scan for transaction
# continue
# continue
import
sys
import
os
import
getopt
import
time
from
struct
import
unpack
from
cPickle
import
loads
try
:
import
ZODB
except
ImportError
:
if
os
.
path
.
exists
(
'ZODB'
):
sys
.
path
.
append
(
'.'
)
elif
os
.
path
.
exists
(
'FileStorage.py'
):
sys
.
path
.
append
(
'..'
)
import
ZODB
import
ZODB.FileStorage
from
ZODB.utils
import
t32
,
u64
from
ZODB.FileStorage
import
RecordIterator
from
persistent.TimeStamp
import
TimeStamp
import
sys
,
os
def
die
(
mess
=
''
,
show_docstring
=
False
):
def
die
(
mess
=
''
,
show_docstring
=
False
):
if
mess
:
if
mess
:
...
@@ -71,21 +94,8 @@ def die(mess='', show_docstring=False):
...
@@ -71,21 +94,8 @@ def die(mess='', show_docstring=False):
print
>>
sys
.
stderr
,
__doc__
%
sys
.
argv
[
0
]
print
>>
sys
.
stderr
,
__doc__
%
sys
.
argv
[
0
]
sys
.
exit
(
1
)
sys
.
exit
(
1
)
try
:
import
ZODB
class
ErrorFound
(
Exception
):
except
ImportError
:
pass
if
os
.
path
.
exists
(
'ZODB'
):
sys
.
path
.
append
(
'.'
)
elif
os
.
path
.
exists
(
'FileStorage.py'
):
sys
.
path
.
append
(
'..'
)
import
ZODB
import
getopt
,
ZODB
.
FileStorage
,
time
from
struct
import
unpack
from
ZODB.utils
import
t32
,
u64
from
persistent.TimeStamp
import
TimeStamp
from
cPickle
import
loads
from
ZODB.FileStorage
import
RecordIterator
class
ErrorFound
(
Exception
):
pass
def
error
(
mess
,
*
args
):
def
error
(
mess
,
*
args
):
raise
ErrorFound
(
mess
%
args
)
raise
ErrorFound
(
mess
%
args
)
...
...
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