summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorChris McDonough <chrism@plope.com>2011-01-27 23:17:31 -0500
committerChris McDonough <chrism@plope.com>2011-01-27 23:17:31 -0500
commit499eef7bc30654a241bafa88f9e492df508a215d (patch)
tree5cb7cca1e045c273ff40c7f6a2b3b4c308a073a4 /docs
parent70acd25f40f32fc6cbb3b5d38a695b8982b52a31 (diff)
downloadpyramid-499eef7bc30654a241bafa88f9e492df508a215d.tar.gz
pyramid-499eef7bc30654a241bafa88f9e492df508a215d.tar.bz2
pyramid-499eef7bc30654a241bafa88f9e492df508a215d.zip
remove bacticks from interface description
Diffstat (limited to 'docs')
-rw-r--r--docs/narr/renderers.rst25
1 files changed, 12 insertions, 13 deletions
diff --git a/docs/narr/renderers.rst b/docs/narr/renderers.rst
index 792c64fcb..d8c58a66a 100644
--- a/docs/narr/renderers.rst
+++ b/docs/narr/renderers.rst
@@ -428,21 +428,20 @@ following interface:
class RendererFactory:
def __init__(self, info):
- """ Constructor: ``info`` will be an object having the
- the following attributes: ``name`` (the renderer name), ``package``
- (the package that was 'current' at the time the renderer was
- registered), ``type`` (the renderer type name), ``registry``
- (the current application registry) and ``settings`` (the
- deployment settings dictionary).
- """
+ """ Constructor: info will be an object having the the
+ following attributes: name (the renderer name), package
+ (the package that was 'current' at the time the
+ renderer was registered), type (the renderer type
+ name), registry (the current application registry) and
+ settings (the deployment settings dictionary). """
def __call__(self, value, system):
- """ Call a the renderer implementation with the value and
- the system value passed in as arguments and return the
- result (a string or unicode object). The value is the
- return value of a view. The system value is a dictionary
- containing available system values (e.g. ``view``,
- ``context``, and ``request``). """
+ """ Call a the renderer implementation with the value
+ and the system value passed in as arguments and return
+ the result (a string or unicode object). The value is
+ the return value of a view. The system value is a
+ dictionary containing available system values
+ (e.g. view, context, and request). """
The formal interface definition of the ``info`` object passed to a renderer
factory constructor is available as :class:`pyramid.interfaces.IRendererInfo`.