[Python-checkins] r77070 - python/trunk/Modules/gcmodule.c

amaury.forgeotdarc python-checkins at python.org
Sun Dec 27 21:06:45 CET 2009


Author: amaury.forgeotdarc
Date: Sun Dec 27 21:06:44 2009
New Revision: 77070

Log:
Fix a typo in comment


Modified:
   python/trunk/Modules/gcmodule.c

Modified: python/trunk/Modules/gcmodule.c
==============================================================================
--- python/trunk/Modules/gcmodule.c	(original)
+++ python/trunk/Modules/gcmodule.c	Sun Dec 27 21:06:44 2009
@@ -960,7 +960,7 @@
 	 */
 	(void)handle_finalizers(&finalizers, old);
 
-	/* Clear free list only during the collection of the higest
+	/* Clear free list only during the collection of the highest
 	 * generation */
 	if (generation == NUM_GENERATIONS-1) {
 		clear_freelists();
@@ -981,7 +981,7 @@
 	int i;
 	Py_ssize_t n = 0;
 
-	/* Find the oldest generation (higest numbered) where the count
+	/* Find the oldest generation (highest numbered) where the count
 	 * exceeds the threshold.  Objects in the that generation and
 	 * generations younger than it will be collected. */
 	for (i = NUM_GENERATIONS-1; i >= 0; i--) {


More information about the Python-checkins mailing list