]> git.apps.os.sepia.ceph.com Git - ceph.git/commitdiff
rados.py: Fixed docstring syntax warnings.
authorJohn Wilkins <john.wilkins@inktank.com>
Fri, 14 Mar 2014 22:52:28 +0000 (15:52 -0700)
committerJohn Wilkins <john.wilkins@inktank.com>
Fri, 14 Mar 2014 22:52:28 +0000 (15:52 -0700)
Signed-off-by: John Wilkins <john.wilkins@inktank.com>
src/pybind/rados.py

index e948ff7cab46cb5a588775ca796cab09e7506724..b4a3a46ef2d4e5ccf6d62366fa2da38b312c4a82 100644 (file)
@@ -429,13 +429,13 @@ Rados object in state %s." % (self.state))
 
         :returns: dict - contains the following keys:
 
-            *``kb`` (int) - total space 
+            ``kb`` (int) - total space 
 
-            *``kb_used`` (int) - space used
+            ``kb_used`` (int) - space used
 
-            *``kb_avail`` (int) - free space available
+            ``kb_avail`` (int) - free space available
 
-            *``num_objects`` (int) - number of objects
+            ``num_objects`` (int) - number of objects
 
         """
         stats = rados_cluster_stat_t()
@@ -1268,30 +1268,30 @@ written." % (self.name, ret, length))
 
         :returns: dict - contains the following keys:
 
-            *``num_bytes`` (int) - size of pool in bytes
+            ``num_bytes`` (int) - size of pool in bytes
 
-            *``num_kb`` (int) - size of pool in kbytes
+            ``num_kb`` (int) - size of pool in kbytes
 
-            *``num_objects`` (int) - number of objects in the pool
+            ``num_objects`` (int) - number of objects in the pool
 
-            *``num_object_clones`` (int) - number of object clones
+            ``num_object_clones`` (int) - number of object clones
 
-            *``num_object_copies`` (int) - number of object copies
+            ``num_object_copies`` (int) - number of object copies
 
-            *``num_objects_missing_on_primary`` (int) - number of objets
+            ``num_objects_missing_on_primary`` (int) - number of objets
                 missing on primary
 
-            *``num_objects_unfound`` (int) - number of unfound objects
+            ``num_objects_unfound`` (int) - number of unfound objects
 
-            *``num_objects_degraded`` (int) - number of degraded objects
+            ``num_objects_degraded`` (int) - number of degraded objects
 
-            *``num_rd`` (int) - bytes read
+            ``num_rd`` (int) - bytes read
 
-            *``num_rd_kb`` (int) - kbytes read
+            ``num_rd_kb`` (int) - kbytes read
 
-            *``num_wr`` (int) - bytes written
+            ``num_wr`` (int) - bytes written
 
-            *``num_wr_kb`` (int) - kbytes written
+            ``num_wr_kb`` (int) - kbytes written
         """
         self.require_ioctx_open()
         stats = rados_pool_stat_t()