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
efd3a09f
Commit
efd3a09f
authored
Apr 27, 2006
by
Andrew M. Kuchling
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Mention the xmlrpclib.Error base class, which is used in one of the examples
parent
356f938f
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
3 deletions
+5
-3
Doc/lib/libxmlrpclib.tex
Doc/lib/libxmlrpclib.tex
+5
-3
No files found.
Doc/lib/libxmlrpclib.tex
View file @
efd3a09f
...
...
@@ -81,9 +81,11 @@ Python type):
This is the full set of data types supported by XML-RPC. Method calls
may also raise a special
\exception
{
Fault
}
instance, used to signal
XML-RPC server errors, or
\exception
{
ProtocolError
}
used to signal an
error in the HTTP/HTTPS transport layer. Note that even though starting
with Python 2.2 you can subclass builtin types, the xmlrpclib module
currently does not marshal instances of such subclasses.
error in the HTTP/HTTPS transport layer. Both
\exception
{
Fault
}
and
\exception
{
ProtocolError
}
derive from a base class called
\exception
{
Error
}
. Note that even though starting with Python 2.2 you
can subclass builtin types, the xmlrpclib module currently does not
marshal instances of such subclasses.
When passing strings, characters special to XML such as
\samp
{
<
}
,
\samp
{
>
}
, and
\samp
{
\&
}
will be automatically escaped. However, it's
...
...
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