Commit 14b1ec0d authored by Tim Peters's avatar Tim Peters

Whitespace normalization.

parent 11cdf9fc
...@@ -722,4 +722,3 @@ def test_suite(): ...@@ -722,4 +722,3 @@ def test_suite():
NastyConfict): NastyConfict):
suite.addTest(makeSuite(k)) suite.addTest(makeSuite(k))
return suite return suite
...@@ -13,7 +13,7 @@ ...@@ -13,7 +13,7 @@
############################################################################## ##############################################################################
"""Persistence and ExtensionClass combined """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 from persistent import PickleCache
...@@ -53,4 +53,3 @@ import sys ...@@ -53,4 +53,3 @@ import sys
sys.modules['BoboPOS'] = sys.modules['Persistence'] sys.modules['BoboPOS'] = sys.modules['Persistence']
sys.modules['BoboPOS.PersistentMapping'] = sys.modules['Persistence.mapping'] sys.modules['BoboPOS.PersistentMapping'] = sys.modules['Persistence.mapping']
del sys del sys
...@@ -14,9 +14,9 @@ ...@@ -14,9 +14,9 @@
"""Python implementation of persistent base types """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 Persistence
import persistent import persistent
......
...@@ -13,7 +13,7 @@ ...@@ -13,7 +13,7 @@
############################################################################## ##############################################################################
"""Test ExtensionClass support in Persistence.Persistent """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 from Persistence import Persistent
...@@ -520,6 +520,3 @@ def test_suite(): ...@@ -520,6 +520,3 @@ def test_suite():
)) ))
if __name__ == '__main__': unittest.main() if __name__ == '__main__': unittest.main()
...@@ -13,7 +13,7 @@ ...@@ -13,7 +13,7 @@
############################################################################## ##############################################################################
"""XXX short summary goes here. """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 import unittest
from doctest import DocTestSuite from doctest import DocTestSuite
......
...@@ -127,4 +127,3 @@ def main(args=None, dbclass=None): ...@@ -127,4 +127,3 @@ def main(args=None, dbclass=None):
if __name__ == "__main__": if __name__ == "__main__":
main(sys.argv[1:]) main(sys.argv[1:])
...@@ -13,7 +13,7 @@ ...@@ -13,7 +13,7 @@
############################################################################## ##############################################################################
"""Storage implementation using a log written to a single file. """Storage implementation using a log written to a single file.
$Revision: 1.2 $ $Revision: 1.3 $
""" """
import base64 import base64
......
...@@ -13,7 +13,7 @@ ...@@ -13,7 +13,7 @@
############################################################################## ##############################################################################
"""Transaction management """Transaction management
$Id: Transaction.py,v 1.55 2003/11/28 16:44:49 jim Exp $ $Id: Transaction.py,v 1.56 2003/12/29 22:40:48 tim_one Exp $
""" """
import sys import sys
from thread import get_ident as _get_ident from thread import get_ident as _get_ident
......
...@@ -300,4 +300,3 @@ def test_suite(): ...@@ -300,4 +300,3 @@ def test_suite():
if __name__ == "__main__": if __name__ == "__main__":
unittest.main(defaultTest="test_suite") unittest.main(defaultTest="test_suite")
...@@ -13,7 +13,7 @@ ...@@ -13,7 +13,7 @@
############################################################################## ##############################################################################
"""Basic pickling tests """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 from persistent import Persistent
...@@ -289,6 +289,3 @@ def test_suite(): ...@@ -289,6 +289,3 @@ def test_suite():
)) ))
if __name__ == '__main__': unittest.main() if __name__ == '__main__': unittest.main()
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment