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
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
Nicolas Wavrant
ZODB
Commits
21b66afd
Commit
21b66afd
authored
Aug 30, 2002
by
Guido van Rossum
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Whitespace normalization.
parent
47c837d7
Changes
9
Show whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
20 additions
and
22 deletions
+20
-22
src/ZEO/smac.py
src/ZEO/smac.py
+1
-2
src/ZEO/zrpc/__init__.py
src/ZEO/zrpc/__init__.py
+2
-2
src/ZEO/zrpc/client.py
src/ZEO/zrpc/client.py
+4
-4
src/ZEO/zrpc/connection.py
src/ZEO/zrpc/connection.py
+3
-3
src/ZEO/zrpc/error.py
src/ZEO/zrpc/error.py
+2
-2
src/ZEO/zrpc/log.py
src/ZEO/zrpc/log.py
+2
-2
src/ZEO/zrpc/marshal.py
src/ZEO/zrpc/marshal.py
+3
-3
src/ZEO/zrpc/server.py
src/ZEO/zrpc/server.py
+2
-2
src/ZEO/zrpc/smac.py
src/ZEO/zrpc/smac.py
+1
-2
No files found.
src/ZEO/smac.py
View file @
21b66afd
...
...
@@ -13,7 +13,7 @@
##############################################################################
"""Sized message async connections
$Id: smac.py,v 1.2
2 2002/08/29 22:39:51 jeremy
Exp $
$Id: smac.py,v 1.2
3 2002/08/30 21:42:30 gvanrossum
Exp $
"""
import
asyncore
,
struct
...
...
@@ -195,7 +195,6 @@ class SizedMessageAsyncConnection(asyncore.dispatcher):
for
i
in
range
(
0
,
len
(
message
),
SEND_SIZE
):
self
.
__output
.
append
(
message
[
i
:
i
+
SEND_SIZE
])
def
close
(
self
):
if
self
.
__closed
is
None
:
self
.
__closed
=
1
...
...
src/ZEO/zrpc/__init__.py
View file @
21b66afd
src/ZEO/zrpc/client.py
View file @
21b66afd
src/ZEO/zrpc/connection.py
View file @
21b66afd
src/ZEO/zrpc/error.py
View file @
21b66afd
src/ZEO/zrpc/log.py
View file @
21b66afd
src/ZEO/zrpc/marshal.py
View file @
21b66afd
src/ZEO/zrpc/server.py
View file @
21b66afd
src/ZEO/zrpc/smac.py
View file @
21b66afd
...
...
@@ -13,7 +13,7 @@
##############################################################################
"""Sized message async connections
$Id: smac.py,v 1.2
2 2002/08/29 22:39:51 jeremy
Exp $
$Id: smac.py,v 1.2
3 2002/08/30 21:42:30 gvanrossum
Exp $
"""
import
asyncore
,
struct
...
...
@@ -195,7 +195,6 @@ class SizedMessageAsyncConnection(asyncore.dispatcher):
for
i
in
range
(
0
,
len
(
message
),
SEND_SIZE
):
self
.
__output
.
append
(
message
[
i
:
i
+
SEND_SIZE
])
def
close
(
self
):
if
self
.
__closed
is
None
:
self
.
__closed
=
1
...
...
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