Changeset 391 for python/trunk/Doc/library/xdrlib.rst
- Timestamp:
- Mar 19, 2014, 11:31:01 PM (11 years ago)
- Location:
- python/trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
python/trunk
-
Property svn:mergeinfo
set to
/python/vendor/Python-2.7.6 merged eligible /python/vendor/current merged eligible
-
Property svn:mergeinfo
set to
-
python/trunk/Doc/library/xdrlib.rst
r2 r391 1 2 1 :mod:`xdrlib` --- Encode and decode XDR data 3 2 ============================================ … … 10 9 single: XDR 11 10 single: External Data Representation 11 12 **Source code:** :source:`Lib/xdrlib.py` 13 14 -------------- 12 15 13 16 The :mod:`xdrlib` module supports the External Data Representation Standard as … … 258 261 .. exception:: Error 259 262 260 The base exception class. :exc:`Error` has a single public data member263 The base exception class. :exc:`Error` has a single public attribute 261 264 :attr:`msg` containing the description of the error. 262 265 … … 272 275 try: 273 276 p.pack_double(8.01) 274 except xdrlib.ConversionError ,instance:277 except xdrlib.ConversionError as instance: 275 278 print 'packing the double failed:', instance.msg 276
Note:
See TracChangeset
for help on using the changeset viewer.