[Python-checkins] commit of r41605 - python/branches/ast-arena/Include/pyarena.h

brett.cannon python-checkins at python.org
Mon Dec 5 06:31:26 CET 2005


Author: brett.cannon
Date: Mon Dec  5 06:31:22 2005
New Revision: 41605

Modified:
   python/branches/ast-arena/Include/pyarena.h
Log:
Fix a typo of a function name in a comment.


Modified: python/branches/ast-arena/Include/pyarena.h
==============================================================================
--- python/branches/ast-arena/Include/pyarena.h	(original)
+++ python/branches/ast-arena/Include/pyarena.h	Mon Dec  5 06:31:22 2005
@@ -15,7 +15,7 @@
      to allocate memory.  Once it is freed, all the memory it allocated
      is freed and none of its pointers are valid.
 
-     Py_ArenaNew() returns an arena pointer.  On error, it
+     PyArena_New() returns an arena pointer.  On error, it
      returns a negative number and sets an exception.
   */
   PyAPI_FUNC(PyArena *) PyArena_New(void);


More information about the Python-checkins mailing list