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
2adbb9d4
Commit
2adbb9d4
authored
Oct 03, 2003
by
Jeremy Hylton
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Get rid of unused assignments and apparently unused default arguments.
parent
b50f8e3a
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
4 deletions
+3
-4
src/ZODB/tests/BasicStorage.py
src/ZODB/tests/BasicStorage.py
+3
-2
src/ZODB/tests/StorageTestBase.py
src/ZODB/tests/StorageTestBase.py
+0
-2
No files found.
src/ZODB/tests/BasicStorage.py
View file @
2adbb9d4
...
@@ -85,9 +85,10 @@ class BasicStorage:
...
@@ -85,9 +85,10 @@ class BasicStorage:
eq
(
value
,
MinPO
(
11
))
eq
(
value
,
MinPO
(
11
))
eq
(
revid
,
newrevid
)
eq
(
revid
,
newrevid
)
def
checkNonVersionStore
(
self
,
oid
=
None
,
revid
=
None
,
version
=
None
):
## def checkNonVersionStore(self, oid=None, revid=None, version=None):
def
checkNonVersionStore
(
self
):
revid
=
ZERO
revid
=
ZERO
newrevid
=
self
.
_dostore
(
revid
=
revid
)
newrevid
=
self
.
_dostore
(
revid
=
None
)
# Finish the transaction.
# Finish the transaction.
self
.
assertNotEqual
(
newrevid
,
revid
)
self
.
assertNotEqual
(
newrevid
,
revid
)
...
...
src/ZODB/tests/StorageTestBase.py
View file @
2adbb9d4
...
@@ -78,10 +78,8 @@ def zodb_unpickle(data):
...
@@ -78,10 +78,8 @@ def zodb_unpickle(data):
if
isinstance
(
klass_info
,
types
.
TupleType
):
if
isinstance
(
klass_info
,
types
.
TupleType
):
if
isinstance
(
klass_info
[
0
],
types
.
TupleType
):
if
isinstance
(
klass_info
[
0
],
types
.
TupleType
):
modname
,
klassname
=
klass_info
[
0
]
modname
,
klassname
=
klass_info
[
0
]
args
=
klass_info
[
1
]
else
:
else
:
modname
,
klassname
=
klass_info
modname
,
klassname
=
klass_info
args
=
None
if
modname
==
"__main__"
:
if
modname
==
"__main__"
:
ns
=
globals
()
ns
=
globals
()
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