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
3fa29f7c
Commit
3fa29f7c
authored
Oct 30, 2011
by
Florent Xicluna
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Closes #13291: NameError in xmlrpc package.
parent
2b50a01d
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
56 additions
and
13 deletions
+56
-13
Lib/test/test_xmlrpc.py
Lib/test/test_xmlrpc.py
+49
-9
Lib/xmlrpc/client.py
Lib/xmlrpc/client.py
+1
-1
Lib/xmlrpc/server.py
Lib/xmlrpc/server.py
+4
-3
Misc/NEWS
Misc/NEWS
+2
-0
No files found.
Lib/test/test_xmlrpc.py
View file @
3fa29f7c
...
@@ -66,15 +66,6 @@ class XMLRPCTestCase(unittest.TestCase):
...
@@ -66,15 +66,6 @@ class XMLRPCTestCase(unittest.TestCase):
(
newdt
,),
m
=
xmlrpclib
.
loads
(
s
,
use_datetime
=
0
)
(
newdt
,),
m
=
xmlrpclib
.
loads
(
s
,
use_datetime
=
0
)
self
.
assertEqual
(
newdt
,
xmlrpclib
.
DateTime
(
'00010210T11:41:23'
))
self
.
assertEqual
(
newdt
,
xmlrpclib
.
DateTime
(
'00010210T11:41:23'
))
def
test_cmp_datetime_DateTime
(
self
):
now
=
datetime
.
datetime
.
now
()
dt
=
xmlrpclib
.
DateTime
(
now
.
timetuple
())
self
.
assertTrue
(
dt
==
now
)
self
.
assertTrue
(
now
==
dt
)
then
=
now
+
datetime
.
timedelta
(
seconds
=
4
)
self
.
assertTrue
(
then
>=
dt
)
self
.
assertTrue
(
dt
<
then
)
def
test_bug_1164912
(
self
):
def
test_bug_1164912
(
self
):
d
=
xmlrpclib
.
DateTime
()
d
=
xmlrpclib
.
DateTime
()
((
new_d
,),
dummy
)
=
xmlrpclib
.
loads
(
xmlrpclib
.
dumps
((
d
,),
((
new_d
,),
dummy
)
=
xmlrpclib
.
loads
(
xmlrpclib
.
dumps
((
d
,),
...
@@ -233,6 +224,45 @@ class DateTimeTestCase(unittest.TestCase):
...
@@ -233,6 +224,45 @@ class DateTimeTestCase(unittest.TestCase):
t2
=
xmlrpclib
.
_datetime
(
d
)
t2
=
xmlrpclib
.
_datetime
(
d
)
self
.
assertEqual
(
t1
,
tref
)
self
.
assertEqual
(
t1
,
tref
)
def
test_comparison
(
self
):
now
=
datetime
.
datetime
.
now
()
dtime
=
xmlrpclib
.
DateTime
(
now
.
timetuple
())
# datetime vs. DateTime
self
.
assertTrue
(
dtime
==
now
)
self
.
assertTrue
(
now
==
dtime
)
then
=
now
+
datetime
.
timedelta
(
seconds
=
4
)
self
.
assertTrue
(
then
>=
dtime
)
self
.
assertTrue
(
dtime
<
then
)
# str vs. DateTime
dstr
=
now
.
strftime
(
"%Y%m%dT%H:%M:%S"
)
self
.
assertTrue
(
dtime
==
dstr
)
self
.
assertTrue
(
dstr
==
dtime
)
dtime_then
=
xmlrpclib
.
DateTime
(
then
.
timetuple
())
self
.
assertTrue
(
dtime_then
>=
dstr
)
self
.
assertTrue
(
dstr
<
dtime_then
)
# some other types
dbytes
=
dstr
.
encode
(
'ascii'
)
dtuple
=
now
.
timetuple
()
with
self
.
assertRaises
(
TypeError
):
dtime
==
1970
with
self
.
assertRaises
(
TypeError
):
dtime
!=
dbytes
with
self
.
assertRaises
(
TypeError
):
dtime
==
bytearray
(
dbytes
)
with
self
.
assertRaises
(
TypeError
):
dtime
!=
dtuple
with
self
.
assertRaises
(
TypeError
):
dtime
<
float
(
1970
)
with
self
.
assertRaises
(
TypeError
):
dtime
>
dbytes
with
self
.
assertRaises
(
TypeError
):
dtime
<=
bytearray
(
dbytes
)
with
self
.
assertRaises
(
TypeError
):
dtime
>=
dtuple
class
BinaryTestCase
(
unittest
.
TestCase
):
class
BinaryTestCase
(
unittest
.
TestCase
):
# XXX What should str(Binary(b"\xff")) return? I'm chosing "\xff"
# XXX What should str(Binary(b"\xff")) return? I'm chosing "\xff"
...
@@ -346,6 +376,10 @@ def http_multi_server(evt, numrequests, requestHandler=None):
...
@@ -346,6 +376,10 @@ def http_multi_server(evt, numrequests, requestHandler=None):
class
MyRequestHandler
(
requestHandler
):
class
MyRequestHandler
(
requestHandler
):
rpc_paths
=
[]
rpc_paths
=
[]
class
BrokenDispatcher
:
def
_marshaled_dispatch
(
self
,
data
,
dispatch_method
=
None
,
path
=
None
):
raise
RuntimeError
(
"broken dispatcher"
)
serv
=
MyXMLRPCServer
((
"localhost"
,
0
),
MyRequestHandler
,
serv
=
MyXMLRPCServer
((
"localhost"
,
0
),
MyRequestHandler
,
logRequests
=
False
,
bind_and_activate
=
False
)
logRequests
=
False
,
bind_and_activate
=
False
)
serv
.
socket
.
settimeout
(
3
)
serv
.
socket
.
settimeout
(
3
)
...
@@ -366,6 +400,7 @@ def http_multi_server(evt, numrequests, requestHandler=None):
...
@@ -366,6 +400,7 @@ def http_multi_server(evt, numrequests, requestHandler=None):
d
.
register_multicall_functions
()
d
.
register_multicall_functions
()
serv
.
get_dispatcher
(
paths
[
0
]).
register_function
(
pow
)
serv
.
get_dispatcher
(
paths
[
0
]).
register_function
(
pow
)
serv
.
get_dispatcher
(
paths
[
1
]).
register_function
(
lambda
x
,
y
:
x
+
y
,
'add'
)
serv
.
get_dispatcher
(
paths
[
1
]).
register_function
(
lambda
x
,
y
:
x
+
y
,
'add'
)
serv
.
add_dispatcher
(
"/is/broken"
,
BrokenDispatcher
())
evt
.
set
()
evt
.
set
()
# handle up to 'numrequests' requests
# handle up to 'numrequests' requests
...
@@ -595,11 +630,16 @@ class MultiPathServerTestCase(BaseServerTestCase):
...
@@ -595,11 +630,16 @@ class MultiPathServerTestCase(BaseServerTestCase):
p
=
xmlrpclib
.
ServerProxy
(
URL
+
"/foo"
)
p
=
xmlrpclib
.
ServerProxy
(
URL
+
"/foo"
)
self
.
assertEqual
(
p
.
pow
(
6
,
8
),
6
**
8
)
self
.
assertEqual
(
p
.
pow
(
6
,
8
),
6
**
8
)
self
.
assertRaises
(
xmlrpclib
.
Fault
,
p
.
add
,
6
,
8
)
self
.
assertRaises
(
xmlrpclib
.
Fault
,
p
.
add
,
6
,
8
)
def
test_path2
(
self
):
def
test_path2
(
self
):
p
=
xmlrpclib
.
ServerProxy
(
URL
+
"/foo/bar"
)
p
=
xmlrpclib
.
ServerProxy
(
URL
+
"/foo/bar"
)
self
.
assertEqual
(
p
.
add
(
6
,
8
),
6
+
8
)
self
.
assertEqual
(
p
.
add
(
6
,
8
),
6
+
8
)
self
.
assertRaises
(
xmlrpclib
.
Fault
,
p
.
pow
,
6
,
8
)
self
.
assertRaises
(
xmlrpclib
.
Fault
,
p
.
pow
,
6
,
8
)
def
test_path3
(
self
):
p
=
xmlrpclib
.
ServerProxy
(
URL
+
"/is/broken"
)
self
.
assertRaises
(
xmlrpclib
.
Fault
,
p
.
add
,
6
,
8
)
#A test case that verifies that a server using the HTTP/1.1 keep-alive mechanism
#A test case that verifies that a server using the HTTP/1.1 keep-alive mechanism
#does indeed serve subsequent requests on the same connection
#does indeed serve subsequent requests on the same connection
class
BaseKeepaliveServerTestCase
(
BaseServerTestCase
):
class
BaseKeepaliveServerTestCase
(
BaseServerTestCase
):
...
...
Lib/xmlrpc/client.py
View file @
3fa29f7c
...
@@ -302,7 +302,7 @@ class DateTime:
...
@@ -302,7 +302,7 @@ class DateTime:
elif
datetime
and
isinstance
(
other
,
datetime
.
datetime
):
elif
datetime
and
isinstance
(
other
,
datetime
.
datetime
):
s
=
self
.
value
s
=
self
.
value
o
=
other
.
strftime
(
"%Y%m%dT%H:%M:%S"
)
o
=
other
.
strftime
(
"%Y%m%dT%H:%M:%S"
)
elif
isinstance
(
other
,
(
str
,
unicode
)
):
elif
isinstance
(
other
,
str
):
s
=
self
.
value
s
=
self
.
value
o
=
other
o
=
other
elif
hasattr
(
other
,
"timetuple"
):
elif
hasattr
(
other
,
"timetuple"
):
...
...
Lib/xmlrpc/server.py
View file @
3fa29f7c
...
@@ -602,7 +602,7 @@ class MultiPathXMLRPCServer(SimpleXMLRPCServer):
...
@@ -602,7 +602,7 @@ class MultiPathXMLRPCServer(SimpleXMLRPCServer):
encoding
,
bind_and_activate
)
encoding
,
bind_and_activate
)
self
.
dispatchers
=
{}
self
.
dispatchers
=
{}
self
.
allow_none
=
allow_none
self
.
allow_none
=
allow_none
self
.
encoding
=
encoding
self
.
encoding
=
encoding
or
'utf-8'
def
add_dispatcher
(
self
,
path
,
dispatcher
):
def
add_dispatcher
(
self
,
path
,
dispatcher
):
self
.
dispatchers
[
path
]
=
dispatcher
self
.
dispatchers
[
path
]
=
dispatcher
...
@@ -620,9 +620,10 @@ class MultiPathXMLRPCServer(SimpleXMLRPCServer):
...
@@ -620,9 +620,10 @@ class MultiPathXMLRPCServer(SimpleXMLRPCServer):
# (each dispatcher should have handled their own
# (each dispatcher should have handled their own
# exceptions)
# exceptions)
exc_type
,
exc_value
=
sys
.
exc_info
()[:
2
]
exc_type
,
exc_value
=
sys
.
exc_info
()[:
2
]
response
=
xmlrpclib
.
dumps
(
response
=
dumps
(
xmlrpclib
.
Fault
(
1
,
"%s:%s"
%
(
exc_type
,
exc_value
)),
Fault
(
1
,
"%s:%s"
%
(
exc_type
,
exc_value
)),
encoding
=
self
.
encoding
,
allow_none
=
self
.
allow_none
)
encoding
=
self
.
encoding
,
allow_none
=
self
.
allow_none
)
response
=
response
.
encode
(
self
.
encoding
)
return
response
return
response
class
CGIXMLRPCRequestHandler
(
SimpleXMLRPCDispatcher
):
class
CGIXMLRPCRequestHandler
(
SimpleXMLRPCDispatcher
):
...
...
Misc/NEWS
View file @
3fa29f7c
...
@@ -63,6 +63,8 @@ Core and Builtins
...
@@ -63,6 +63,8 @@ Core and Builtins
Library
Library
-------
-------
- Issue #13291: NameError in xmlrpc package.
- Issue #13258: Use callable() built-in in the standard library.
- Issue #13258: Use callable() built-in in the standard library.
- Issue #13273: fix a bug that prevented HTMLParser to properly detect some
- Issue #13273: fix a bug that prevented HTMLParser to properly detect some
...
...
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