From: Peter Eisentraut Date: Thu, 20 Jan 2011 20:04:36 +0000 (+0200) Subject: Fix wrong comment X-Git-Tag: REL9_1_ALPHA4~413 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=14b9f69cb2077c65a09df78d167d45c35b1d7973;p=postgresql Fix wrong comment Hitoshi Harada --- diff --git a/src/pl/plpython/plpython.c b/src/pl/plpython/plpython.c index 0e2c688f82..370f4f7ea2 100644 --- a/src/pl/plpython/plpython.c +++ b/src/pl/plpython/plpython.c @@ -265,9 +265,9 @@ PG_FUNCTION_INFO_V1(plpython_inline_handler); /* most of the remaining of the declarations, all static */ -/* these should only be called once at the first call - * of plpython_call_handler. initialize the python interpreter - * and global data. +/* + * These should only be called once from _PG_init. Initialize the + * Python interpreter and global data. */ static void PLy_init_interp(void); static void PLy_init_plpy(void);