This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author vajrasky
Recipients docs@python, pitrou, vajrasky
Date 2013-08-06.04:53:19
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1375764800.58.0.482122024787.issue18665@psf.upfronthosting.co.za>
In-reply-to
Content
See the patch for details:

diff -r 438cdc97d8ee Include/frameobject.h
--- a/Include/frameobject.h	Mon Aug 05 23:35:43 2013 +0200
+++ b/Include/frameobject.h	Tue Aug 06 12:38:15 2013 +0800
@@ -36,7 +36,7 @@
            non-generator frames. See the save_exc_state and swap_exc_state
            functions in ceval.c for details of their use. */
     PyObject *f_exc_type, *f_exc_value, *f_exc_traceback;
-    /* Borrowed referenced to a generator, or NULL */
+    /* Borrowed reference to a generator, or NULL */
     PyObject *f_gen;
 
     PyThreadState *f_tstate;
diff -r 438cdc97d8ee Lib/test/test_frame.py
--- a/Lib/test/test_frame.py	Mon Aug 05 23:35:43 2013 +0200
+++ b/Lib/test/test_frame.py	Tue Aug 06 12:38:15 2013 +0800
@@ -93,7 +93,7 @@
 
     @support.cpython_only
     def test_clear_refcycles(self):
-        # .clear() doesn't leave any refcycle behin
+        # .clear() doesn't leave any refcycle behind.
         with support.disable_gc():
             class C:
                 pass


About the second comment, I am not sure to put dot or not. In that file, I saw some comments use dot, others don't.
History
Date User Action Args
2013-08-06 04:53:20vajraskysetrecipients: + vajrasky, pitrou, docs@python
2013-08-06 04:53:20vajraskysetmessageid: <1375764800.58.0.482122024787.issue18665@psf.upfronthosting.co.za>
2013-08-06 04:53:20vajraskylinkissue18665 messages
2013-08-06 04:53:19vajraskycreate