]> granicus.if.org Git - python/commitdiff
Nits
authorRaymond Hettinger <python@rcn.com>
Thu, 16 Dec 2010 00:30:53 +0000 (00:30 +0000)
committerRaymond Hettinger <python@rcn.com>
Thu, 16 Dec 2010 00:30:53 +0000 (00:30 +0000)
Doc/library/inspect.rst
Doc/whatsnew/3.2.rst
Misc/NEWS

index 4845bcaa04f51eb7d11af0b6f82bc0422175185a..a95e16f493102036a54c602049909d12cc36e8d5 100644 (file)
@@ -630,17 +630,17 @@ Current State of a Generator
 When implementing coroutine schedulers and for other advanced uses of
 generators, it is useful to determine whether a generator is currently
 executing, is waiting to start or resume or execution, or has already
-terminated. func:`getgeneratorstate` allows the current state of a
+terminated. :func:`getgeneratorstate` allows the current state of a
 generator to be determined easily.
 
 .. function:: getgeneratorstate(generator)
 
-    Get current state of a generator-iterator.
+   Get current state of a generator-iterator.
 
-    Possible states are:
-      GEN_CREATED: Waiting to start execution.
-      GEN_RUNNING: Currently being executed by the interpreter.
-      GEN_SUSPENDED: Currently suspended at a yield expression.
-      GEN_CLOSED: Execution has completed.
+   Possible states are:
+   -  GEN_CREATED: Waiting to start execution.
+   -  GEN_RUNNING: Currently being executed by the interpreter.
+   -  GEN_SUSPENDED: Currently suspended at a yield expression.
+   -  GEN_CLOSED: Execution has completed.
 
    .. versionadded:: 3.2
index b2dc01fa7db0fa3b7f08a4726756a18c8e28431b..4e6384e9b1fdce2cbf5863b8ca47c154773ca229 100644 (file)
@@ -1311,7 +1311,7 @@ Multi-threading
 * Regular and recursive lock acquisitions can now be interrupted by signals on
   platforms using pthreads.  This means that Python programs that deadlock while
   acquiring locks can be successfully killed by repeatedly sending SIGINT to the
-  process (ie, by pressing Ctl+C in most shells).
+  process (by pressing Ctl+C in most shells).
   (Contributed by Reid Kleckner; :issue:`8844`.)
 
 
index f2a22b1e406295cf9b337d315cd36f68957c9300..5c654909b08dacdc342266693848a510c4b96125 100644 (file)
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -2195,7 +2195,7 @@ Library
 - Issue #8897: Fix sunau module, use bytes to write the header. Patch written by
   Thomas Jollans.
 
-- Issue #8899: time.struct_time now has class and atribute docstrings.
+- Issue #8899: time.struct_time now has class and attribute docstrings.
 
 - Issue #6470: Drop UNC prefix in FixTk.