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
2ad32979
Commit
2ad32979
authored
Dec 29, 2003
by
Tim Peters
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Whitespace normalization.
parent
518caa4b
Changes
15
Show whitespace changes
Inline
Side-by-side
Showing
15 changed files
with
60 additions
and
70 deletions
+60
-70
trunk/src/BTrees/Length.py
trunk/src/BTrees/Length.py
+1
-1
trunk/src/BTrees/tests/testConflict.py
trunk/src/BTrees/tests/testConflict.py
+0
-1
trunk/src/Persistence/__init__.py
trunk/src/Persistence/__init__.py
+1
-2
trunk/src/Persistence/mapping.py
trunk/src/Persistence/mapping.py
+5
-5
trunk/src/Persistence/tests/test_ExtensionClass.py
trunk/src/Persistence/tests/test_ExtensionClass.py
+24
-27
trunk/src/Persistence/tests/test_mapping.py
trunk/src/Persistence/tests/test_mapping.py
+2
-2
trunk/src/ZEO/tests/auth_plaintext.py
trunk/src/ZEO/tests/auth_plaintext.py
+1
-1
trunk/src/ZEO/tests/testTransactionBuffer.py
trunk/src/ZEO/tests/testTransactionBuffer.py
+1
-1
trunk/src/ZEO/tests/test_cache.py
trunk/src/ZEO/tests/test_cache.py
+1
-1
trunk/src/ZEO/zeopasswd.py
trunk/src/ZEO/zeopasswd.py
+3
-4
trunk/src/ZODB/FileStorage/FileStorage.py
trunk/src/ZODB/FileStorage/FileStorage.py
+3
-3
trunk/src/ZODB/Transaction.py
trunk/src/ZODB/Transaction.py
+2
-2
trunk/src/ZODB/tests/VersionStorage.py
trunk/src/ZODB/tests/VersionStorage.py
+1
-1
trunk/src/ZODB/tests/testZODB.py
trunk/src/ZODB/tests/testZODB.py
+0
-1
trunk/src/persistent/tests/test_pickle.py
trunk/src/persistent/tests/test_pickle.py
+15
-18
No files found.
trunk/src/BTrees/Length.py
View file @
2ad32979
trunk/src/BTrees/tests/testConflict.py
View file @
2ad32979
...
...
@@ -722,4 +722,3 @@ def test_suite():
NastyConfict
):
suite
.
addTest
(
makeSuite
(
k
))
return
suite
trunk/src/Persistence/__init__.py
View file @
2ad32979
...
...
@@ -13,7 +13,7 @@
##############################################################################
"""Persistence and ExtensionClass combined
$Id: __init__.py,v 1.
7 2003/12/15 07:30:27 jim
Exp $
$Id: __init__.py,v 1.
8 2003/12/29 22:40:45 tim_one
Exp $
"""
from
persistent
import
PickleCache
...
...
@@ -53,4 +53,3 @@ import sys
sys
.
modules
[
'BoboPOS'
]
=
sys
.
modules
[
'Persistence'
]
sys
.
modules
[
'BoboPOS.PersistentMapping'
]
=
sys
.
modules
[
'Persistence.mapping'
]
del
sys
trunk/src/Persistence/mapping.py
View file @
2ad32979
...
...
@@ -14,9 +14,9 @@
"""Python implementation of persistent base types
$Id: mapping.py,v 1.
1 2003/12/15 06:56:46 jim
Exp $"""
$Id: mapping.py,v 1.
2 2003/12/29 22:40:45 tim_one
Exp $"""
__version__
=
'$Revision: 1.
1
$'
[
11
:
-
2
]
__version__
=
'$Revision: 1.
2
$'
[
11
:
-
2
]
import
Persistence
import
persistent
...
...
trunk/src/Persistence/tests/test_ExtensionClass.py
View file @
2ad32979
...
...
@@ -13,7 +13,7 @@
##############################################################################
"""Test ExtensionClass support in Persistence.Persistent
$Id: test_ExtensionClass.py,v 1.
2 2003/11/28 16:44:47 jim
Exp $
$Id: test_ExtensionClass.py,v 1.
3 2003/12/29 22:40:46 tim_one
Exp $
"""
from
Persistence
import
Persistent
...
...
@@ -520,6 +520,3 @@ def test_suite():
))
if
__name__
==
'__main__'
:
unittest
.
main
()
trunk/src/Persistence/tests/test_mapping.py
View file @
2ad32979
...
...
@@ -13,7 +13,7 @@
##############################################################################
"""XXX short summary goes here.
$Id: test_mapping.py,v 1.
1 2003/12/15 06:58:26 jim
Exp $
$Id: test_mapping.py,v 1.
2 2003/12/29 22:40:46 tim_one
Exp $
"""
import
unittest
from
doctest
import
DocTestSuite
...
...
trunk/src/ZEO/tests/auth_plaintext.py
View file @
2ad32979
trunk/src/ZEO/tests/testTransactionBuffer.py
View file @
2ad32979
trunk/src/ZEO/tests/test_cache.py
View file @
2ad32979
trunk/src/ZEO/zeopasswd.py
View file @
2ad32979
...
...
@@ -127,4 +127,3 @@ def main(args=None, dbclass=None):
if
__name__
==
"__main__"
:
main
(
sys
.
argv
[
1
:])
trunk/src/ZODB/FileStorage/FileStorage.py
View file @
2ad32979
...
...
@@ -13,7 +13,7 @@
##############################################################################
"""Storage implementation using a log written to a single file.
$Revision: 1.
2
$
$Revision: 1.
3
$
"""
import
base64
...
...
trunk/src/ZODB/Transaction.py
View file @
2ad32979
...
...
@@ -13,7 +13,7 @@
##############################################################################
"""Transaction management
$Id: Transaction.py,v 1.5
5 2003/11/28 16:44:49 jim
Exp $
$Id: Transaction.py,v 1.5
6 2003/12/29 22:40:48 tim_one
Exp $
"""
import
sys
from
thread
import
get_ident
as
_get_ident
...
...
trunk/src/ZODB/tests/VersionStorage.py
View file @
2ad32979
trunk/src/ZODB/tests/testZODB.py
View file @
2ad32979
...
...
@@ -300,4 +300,3 @@ def test_suite():
if
__name__
==
"__main__"
:
unittest
.
main
(
defaultTest
=
"test_suite"
)
trunk/src/persistent/tests/test_pickle.py
View file @
2ad32979
...
...
@@ -13,7 +13,7 @@
##############################################################################
"""Basic pickling tests
$Id: test_pickle.py,v 1.
2 2003/11/28 16:44:56 jim
Exp $
$Id: test_pickle.py,v 1.
3 2003/12/29 22:40:50 tim_one
Exp $
"""
from
persistent
import
Persistent
...
...
@@ -289,6 +289,3 @@ def test_suite():
))
if
__name__
==
'__main__'
:
unittest
.
main
()
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