[Python-checkins] r46696 - python/trunk/Parser/node.c

andrew.kuchling python-checkins at python.org
Tue Jun 6 19:10:42 CEST 2006


Author: andrew.kuchling
Date: Tue Jun  6 19:10:41 2006
New Revision: 46696

Modified:
   python/trunk/Parser/node.c
Log:
Fix comment typo

Modified: python/trunk/Parser/node.c
==============================================================================
--- python/trunk/Parser/node.c	(original)
+++ python/trunk/Parser/node.c	Tue Jun  6 19:10:41 2006
@@ -65,7 +65,7 @@
  * reported that, with this scheme, 89% of PyObject_REALLOC calls in
  * PyNode_AddChild passed 1 for the size, and 9% passed 4.  So this usually
  * wastes very little memory, but is very effective at sidestepping
- * platform-realloc disasters on vulnernable platforms.
+ * platform-realloc disasters on vulnerable platforms.
  *
  * Note that this would be straightforward if a node stored its current
  * capacity.  The code is tricky to avoid that.


More information about the Python-checkins mailing list