Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Z
ZEO
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
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
ZEO
Commits
a4868a4f
Commit
a4868a4f
authored
Aug 29, 2002
by
Guido van Rossum
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Whitespace cleanup.
parent
059c3a5f
Changes
26
Show whitespace changes
Inline
Side-by-side
Showing
26 changed files
with
72 additions
and
82 deletions
+72
-82
src/ZEO/ClientStub.py
src/ZEO/ClientStub.py
+2
-2
src/ZEO/CommitLog.py
src/ZEO/CommitLog.py
+2
-3
src/ZEO/Exceptions.py
src/ZEO/Exceptions.py
+2
-2
src/ZEO/ICache.py
src/ZEO/ICache.py
+1
-7
src/ZEO/ServerStub.py
src/ZEO/ServerStub.py
+2
-2
src/ZEO/StorageServer.py
src/ZEO/StorageServer.py
+6
-6
src/ZEO/TransactionBuffer.py
src/ZEO/TransactionBuffer.py
+4
-4
src/ZEO/__init__.py
src/ZEO/__init__.py
+2
-2
src/ZEO/smac.py
src/ZEO/smac.py
+3
-3
src/ZEO/start.py
src/ZEO/start.py
+9
-9
src/ZEO/tests/Cache.py
src/ZEO/tests/Cache.py
+2
-2
src/ZEO/tests/CommitLockTests.py
src/ZEO/tests/CommitLockTests.py
+0
-1
src/ZEO/tests/TestThread.py
src/ZEO/tests/TestThread.py
+0
-1
src/ZEO/tests/ThreadTests.py
src/ZEO/tests/ThreadTests.py
+2
-2
src/ZEO/tests/__init__.py
src/ZEO/tests/__init__.py
+2
-2
src/ZEO/tests/forker.py
src/ZEO/tests/forker.py
+2
-2
src/ZEO/tests/multi.py
src/ZEO/tests/multi.py
+2
-2
src/ZEO/tests/speed.py
src/ZEO/tests/speed.py
+2
-2
src/ZEO/tests/stress.py
src/ZEO/tests/stress.py
+2
-2
src/ZEO/tests/testClientCache.py
src/ZEO/tests/testClientCache.py
+2
-2
src/ZEO/tests/testStart.py
src/ZEO/tests/testStart.py
+5
-6
src/ZEO/tests/testTransactionBuffer.py
src/ZEO/tests/testTransactionBuffer.py
+2
-2
src/ZEO/tests/testZEO.py
src/ZEO/tests/testZEO.py
+7
-7
src/ZEO/tests/winserver.py
src/ZEO/tests/winserver.py
+2
-2
src/ZEO/util.py
src/ZEO/util.py
+4
-4
src/ZEO/zrpc/smac.py
src/ZEO/zrpc/smac.py
+3
-3
No files found.
src/ZEO/ClientStub.py
View file @
a4868a4f
src/ZEO/CommitLog.py
View file @
a4868a4f
...
...
@@ -44,4 +44,3 @@ class CommitLog:
self
.
read
=
1
self
.
file
.
seek
(
0
)
return
self
.
stores
,
cPickle
.
Unpickler
(
self
.
file
)
src/ZEO/Exceptions.py
View file @
a4868a4f
src/ZEO/ICache.py
View file @
a4868a4f
...
...
@@ -75,9 +75,3 @@ class ICache(Base):
size is a hint about the amount of data that is about to be
stored. The cache may want to evict some data to make space.
"""
src/ZEO/ServerStub.py
View file @
a4868a4f
src/ZEO/StorageServer.py
View file @
a4868a4f
src/ZEO/TransactionBuffer.py
View file @
a4868a4f
src/ZEO/__init__.py
View file @
a4868a4f
src/ZEO/smac.py
View file @
a4868a4f
...
...
@@ -13,7 +13,7 @@
##############################################################################
"""Sized message async connections
$Id: smac.py,v 1.2
0 2002/08/28 18:24:50
gvanrossum Exp $
$Id: smac.py,v 1.2
1 2002/08/29 16:31:17
gvanrossum Exp $
"""
import
asyncore
,
struct
...
...
src/ZEO/start.py
View file @
a4868a4f
...
...
@@ -13,7 +13,7 @@
##############################################################################
"""Start the server storage.
$Id: start.py,v 1.4
2 2002/08/27 18:43:12 bwarsaw
Exp $
$Id: start.py,v 1.4
3 2002/08/29 16:31:17 gvanrossum
Exp $
"""
from
__future__
import
nested_scopes
...
...
src/ZEO/tests/Cache.py
View file @
a4868a4f
src/ZEO/tests/CommitLockTests.py
View file @
a4868a4f
...
...
@@ -194,4 +194,3 @@ class CommitLockTests:
t
=
time
.
time
()
t
=
apply
(
TimeStamp
,(
time
.
gmtime
(
t
)[:
5
]
+
(
t
%
60
,)))
return
`t`
src/ZEO/tests/TestThread.py
View file @
a4868a4f
...
...
@@ -40,4 +40,3 @@ class TestThread(threading.Thread):
self
.
join
(
timeout
)
if
self
.
isAlive
():
self
.
_testcase
.
fail
(
"Thread did not finish: %s"
%
self
)
src/ZEO/tests/ThreadTests.py
View file @
a4868a4f
src/ZEO/tests/__init__.py
View file @
a4868a4f
src/ZEO/tests/forker.py
View file @
a4868a4f
src/ZEO/tests/multi.py
View file @
a4868a4f
src/ZEO/tests/speed.py
View file @
a4868a4f
src/ZEO/tests/stress.py
View file @
a4868a4f
src/ZEO/tests/testClientCache.py
View file @
a4868a4f
src/ZEO/tests/testStart.py
View file @
a4868a4f
...
...
@@ -194,4 +194,3 @@ def test_suite():
else
:
# Don't even bother with these tests on Windows
return
None
src/ZEO/tests/testTransactionBuffer.py
View file @
a4868a4f
src/ZEO/tests/testZEO.py
View file @
a4868a4f
src/ZEO/tests/winserver.py
View file @
a4868a4f
src/ZEO/util.py
View file @
a4868a4f
src/ZEO/zrpc/smac.py
View file @
a4868a4f
...
...
@@ -13,7 +13,7 @@
##############################################################################
"""Sized message async connections
$Id: smac.py,v 1.2
0 2002/08/28 18:24:50
gvanrossum Exp $
$Id: smac.py,v 1.2
1 2002/08/29 16:31:17
gvanrossum Exp $
"""
import
asyncore
,
struct
...
...
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