Browse Source

Docs: Fixes typo

Ask Solem 14 years ago
parent
commit
e7d191b9dd
2 changed files with 4 additions and 19 deletions
  1. 2 17
      Changelog
  2. 2 2
      docs/tutorials/debugging.rst

+ 2 - 17
Changelog

@@ -237,25 +237,10 @@ Important Notes
         (Pdb)
 
     Enter ``help`` to get a list of available commands,
-    It may be a good idea to read the `The Python Debugger`_ manual if
+    It may be a good idea to read the `Python Debugger Manual`_ if
     you have never used `pdb` before.
 
-    To demonstrate, we will read the value of the ``result`` variable,
-    change it and continue execution of the task::
-
-        (Pdb) result
-        4
-        (Pdb) result = "hello from rdb"
-        (Pdb) continue
-        Connection closed by foreign host.
-
-    The result of our vandalism can be seen in the worker logs::
-
-        [2011-01-18 14:35:36,599: INFO/MainProcess] Task
-            tasks.add[d7261c71-4962-47e5-b342-2448bedd20e8] succeeded
-            in 61.481s: 'hello from rdb'
-
-.. _`The Python Debugger`: http://docs.python.org/library/pdb.html
+.. _`Python Debugger Manual`: http://docs.python.org/library/pdb.html
 
 
 * Events are now transient and is using a topic exchange (instead of direct).

+ 2 - 2
docs/tutorials/debugging.rst

@@ -57,7 +57,7 @@ with a `pdb` shell::
     (Pdb)
 
 Enter ``help`` to get a list of available commands,
-It may be a good idea to read the `The Python Debugger`_ manual if
+It may be a good idea to read the `Python Debugger Manual`_ if
 you have never used `pdb` before.
 
 To demonstrate, we will read the value of the ``result`` variable,
@@ -75,4 +75,4 @@ The result of our vandalism can be seen in the worker logs::
         tasks.add[d7261c71-4962-47e5-b342-2448bedd20e8] succeeded
         in 61.481s: 'hello from rdb'
 
-.. _`The Python Debugger`: http://docs.python.org/library/pdb.html
+.. _`Python Debugger Manual`: http://docs.python.org/library/pdb.html