doc: update :data: to :py:data: for modern Sphinx.
authorW. Trevor King <wking@tremily.us>
Fri, 26 Oct 2012 12:42:14 +0000 (08:42 -0400)
committerW. Trevor King <wking@tremily.us>
Fri, 26 Oct 2012 12:42:14 +0000 (08:42 -0400)
libbe/storage/util/config.py
libbe/storage/vcs/base.py
libbe/util/id.py

index 7e14b5d3f1d7b2559bcf73994e3c4be7a716be2a..4945b1f8dd6c5c1dce1ff2b175c764ec0b4e32b0 100644 (file)
@@ -67,7 +67,7 @@ def set_val(name, value, section="DEFAULT", encoding=None):
     section : str
       The section to store the name/value in.
     encoding : str
-      The config file's encoding, defaults to :data:`default_encoding`.
+      The config file's encoding, defaults to :py:data:`default_encoding`.
     """
     if encoding == None:
         encoding = default_encoding
@@ -97,7 +97,7 @@ def get_val(name, section="DEFAULT", default=None, encoding=None):
     default :
       The value to return if `name` is not set.
     encoding : str
-      The config file's encoding, defaults to :data:`default_encoding`.
+      The config file's encoding, defaults to :py:data:`default_encoding`.
 
     Examples
     --------
index 9de2fe304731ba5ceec654881ea5bd40ae5351d0..845336daf86dad8587e706678ca38bb718ae33f3 100644 (file)
@@ -57,7 +57,7 @@ Don't list this module, it is implicitly last.
 """
 
 def set_preferred_vcs(name):
-    """Manipulate :data:`VCS_ORDER` to place `name` first.
+    """Manipulate :py:data:`VCS_ORDER` to place `name` first.
 
     This is primarily indended for testing purposes.
     """
@@ -70,7 +70,7 @@ def set_preferred_vcs(name):
 def _get_matching_vcs(matchfn):
     """Return the first module for which matchfn(VCS_instance) is True.
 
-    Searches in :data:`VCS_ORDER`.
+    Searches in :py:data:`VCS_ORDER`.
     """
     for submodname in VCS_ORDER:
         module = import_by_name('libbe.storage.vcs.%s' % submodname)
@@ -82,7 +82,7 @@ def _get_matching_vcs(matchfn):
 def vcs_by_name(vcs_name):
     """Return the module for the VCS with the given name.
 
-    Searches in :data:`VCS_ORDER`.
+    Searches in :py:data:`VCS_ORDER`.
     """
     if vcs_name == VCS.name:
         return new()
@@ -91,14 +91,14 @@ def vcs_by_name(vcs_name):
 def detect_vcs(dir):
     """Return an VCS instance for the vcs being used in this directory.
 
-    Searches in :data:`VCS_ORDER`.
+    Searches in :py:data:`VCS_ORDER`.
     """
     return _get_matching_vcs(lambda vcs: vcs._detect(dir))
 
 def installed_vcs():
     """Return an instance of an installed VCS.
 
-    Searches in :data:`VCS_ORDER`.
+    Searches in :py:data:`VCS_ORDER`.
     """
     return _get_matching_vcs(lambda vcs: vcs.installed())
 
index 8605d09919ab278959a7d99434ae461215deaeba..de9edf965ac84ee58378c2f09d48ce3c38d58e3a 100644 (file)
@@ -464,7 +464,7 @@ REGEXP = '#([-a-f0-9]*)(/[-a-g0-9]*)?(/[-a-g0-9]*)?#'
 class IDreplacer (object):
     """Helper class for ID replacement in text.
 
-    Reassembles the match elements from :data:`REGEXP` matching
+    Reassembles the match elements from :py:data:`REGEXP` matching
     into the original ID, for easier replacement.
 
     See Also
@@ -546,7 +546,7 @@ def _parse_user(id):
     information.
 
     The returned dict will contain a value for "type" (from
-    :data:`HIERARCHY`) and values for the levels that are defined.
+    :py:data:`HIERARCHY`) and values for the levels that are defined.
 
     Examples
     --------
@@ -589,7 +589,7 @@ def parse_user(bugdirs, id):
     information.
 
     The returned dict will contain a value for "type" (from
-    :data:`HIERARCHY`) and values for the levels that are defined.
+    :py:data:`HIERARCHY`) and values for the levels that are defined.
 
     Notes
     -----