Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
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
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
12237b3a
Commit
12237b3a
authored
Aug 22, 2004
by
Martin v. Löwis
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Replace yield with sequence class. Fixes #1009803.
parent
d3b0babf
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
21 additions
and
8 deletions
+21
-8
Lib/xmlrpclib.py
Lib/xmlrpclib.py
+21
-8
No files found.
Lib/xmlrpclib.py
View file @
12237b3a
...
@@ -892,15 +892,19 @@ class _MultiCallMethod:
...
@@ -892,15 +892,19 @@ class _MultiCallMethod:
def
__call__
(
self
,
*
args
):
def
__call__
(
self
,
*
args
):
self
.
__call_list
.
append
((
self
.
__name
,
args
))
self
.
__call_list
.
append
((
self
.
__name
,
args
))
def
MultiCallIterator
(
results
)
:
class
MultiCallIterator
:
"""Iterates over the results of a multicall. Exceptions are
"""Iterates over the results of a multicall. Exceptions are
thrown in response to xmlrpc faults."""
thrown in response to xmlrpc faults."""
for
i
in
results
:
def
__init__
(
self
,
results
):
if
type
(
i
)
==
type
({}):
self
.
results
=
results
raise
Fault
(
i
[
'faultCode'
],
i
[
'faultString'
])
elif
type
(
i
)
==
type
([]):
def
__getitem__
(
self
,
i
):
yield
i
[
0
]
item
=
self
.
results
[
i
]
if
type
(
item
)
==
type
({}):
raise
Fault
(
item
[
'faultCode'
],
item
[
'faultString'
])
elif
type
(
item
)
==
type
([]):
return
item
[
0
]
else
:
else
:
raise
ValueError
,
\
raise
ValueError
,
\
"unexpected type in multicall result"
"unexpected type in multicall result"
...
@@ -1412,11 +1416,20 @@ if __name__ == "__main__":
...
@@ -1412,11 +1416,20 @@ if __name__ == "__main__":
# simple test program (from the XML-RPC specification)
# simple test program (from the XML-RPC specification)
# server = ServerProxy("http://localhost:8000") # local server
# server = ServerProxy("http://localhost:8000") # local server
server
=
ServerProxy
(
"http://
betty.userland.com
"
)
server
=
ServerProxy
(
"http://
time.xmlrpc.com/RPC2
"
)
print
server
print
server
try
:
try
:
print
server
.
examples
.
getStateName
(
41
)
print
server
.
currentTime
.
getCurrentTime
()
except
Error
,
v
:
print
"ERROR"
,
v
multi
=
MultiCall
(
server
)
multi
.
currentTime
.
getCurrentTime
()
multi
.
currentTime
.
getCurrentTime
()
try
:
for
response
in
multi
():
print
response
except
Error
,
v
:
except
Error
,
v
:
print
"ERROR"
,
v
print
"ERROR"
,
v
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