summaryrefslogtreecommitdiff
path: root/docs/narr/muchadoabouttraversal.rst
diff options
context:
space:
mode:
authorChris McDonough <chrism@plope.com>2013-03-25 05:05:07 -0400
committerChris McDonough <chrism@plope.com>2013-03-25 05:05:07 -0400
commitdacbe656d8851580234214fb655b60d24f5800fb (patch)
treef0c39c064fd55b1141c7e96a62ae80a290acd8ff /docs/narr/muchadoabouttraversal.rst
parent0bda2652728ae33ea37adc1f7f2f382e0ebbf4df (diff)
parentb4c0d4f0574b45c88f66530548ecaa7d6ad0baef (diff)
downloadpyramid-dacbe656d8851580234214fb655b60d24f5800fb.tar.gz
pyramid-dacbe656d8851580234214fb655b60d24f5800fb.tar.bz2
pyramid-dacbe656d8851580234214fb655b60d24f5800fb.zip
Merge branch 'master' of github.com:Pylons/pyramid
Diffstat (limited to 'docs/narr/muchadoabouttraversal.rst')
-rw-r--r--docs/narr/muchadoabouttraversal.rst18
1 files changed, 6 insertions, 12 deletions
diff --git a/docs/narr/muchadoabouttraversal.rst b/docs/narr/muchadoabouttraversal.rst
index 40d498391..483b1bb16 100644
--- a/docs/narr/muchadoabouttraversal.rst
+++ b/docs/narr/muchadoabouttraversal.rst
@@ -168,18 +168,12 @@ hood, when ``adict`` is a dictionary-like object, Python translates
``adict['a']`` to ``adict.__getitem__('a')``. Try doing this in a Python
interpreter prompt if you don't believe us:
-.. code-block:: text
- :linenos:
-
- Python 2.4.6 (#2, Apr 29 2010, 00:31:48)
- [GCC 4.4.3] on linux2
- Type "help", "copyright", "credits" or "license" for more information.
- >>> adict = {}
- >>> adict['a'] = 1
- >>> adict['a']
- 1
- >>> adict.__getitem__('a')
- 1
+>>> adict = {}
+>>> adict['a'] = 1
+>>> adict['a']
+1
+>>> adict.__getitem__('a')
+1
The dictionary-like root object stores the ids of all of its subresources as