diff options
| author | Chris McDonough <chrism@plope.com> | 2013-03-23 00:55:20 -0700 |
|---|---|---|
| committer | Chris McDonough <chrism@plope.com> | 2013-03-23 00:55:20 -0700 |
| commit | 7092445adf156f0a0d900d1a03d982c8fe9538ee (patch) | |
| tree | 7e5f1a16b1e7faaa53c2b8c87ba27c920bdade59 /docs | |
| parent | 0bda2652728ae33ea37adc1f7f2f382e0ebbf4df (diff) | |
| parent | a3251ddd6d9a2948fe8e762673ee6f3a6a66ea55 (diff) | |
| download | pyramid-7092445adf156f0a0d900d1a03d982c8fe9538ee.tar.gz pyramid-7092445adf156f0a0d900d1a03d982c8fe9538ee.tar.bz2 pyramid-7092445adf156f0a0d900d1a03d982c8fe9538ee.zip | |
Merge pull request #938 from tshepang/noise
remove visual noise
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/narr/muchadoabouttraversal.rst | 18 |
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 |
