diff options
author | Georg Brandl <georg@python.org> | 2005-07-22 21:49:32 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2005-07-22 21:49:32 (GMT) |
commit | 7eb4b7d177adae5b5d0aefa6f54170b3967b2473 (patch) | |
tree | 9006926c7dc6c5ca522c2fdbf055a40f88fad2b1 /Lib/SimpleXMLRPCServer.py | |
parent | 08c02dbb85a8eebe3395658260dec36dd4169381 (diff) | |
download | cpython-7eb4b7d177adae5b5d0aefa6f54170b3967b2473.zip cpython-7eb4b7d177adae5b5d0aefa6f54170b3967b2473.tar.gz cpython-7eb4b7d177adae5b5d0aefa6f54170b3967b2473.tar.bz2 |
Fix all wrong instances of "it's".
Diffstat (limited to 'Lib/SimpleXMLRPCServer.py')
-rw-r--r-- | Lib/SimpleXMLRPCServer.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/SimpleXMLRPCServer.py b/Lib/SimpleXMLRPCServer.py index 315ce84..5e39840 100644 --- a/Lib/SimpleXMLRPCServer.py +++ b/Lib/SimpleXMLRPCServer.py @@ -170,7 +170,7 @@ class SimpleXMLRPCDispatcher: If the registered instance has a _dispatch method then that method will be called with the name of the XML-RPC method and - it's parameters as a tuple + its parameters as a tuple e.g. instance._dispatch('add',(2,3)) If the registered instance does not have a _dispatch method @@ -371,7 +371,7 @@ class SimpleXMLRPCDispatcher: If the registered instance has a _dispatch method then that method will be called with the name of the XML-RPC method and - it's parameters as a tuple + its parameters as a tuple e.g. instance._dispatch('add',(2,3)) If the registered instance does not have a _dispatch method |