diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2003-07-01 13:52:29 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2003-07-01 13:52:29 +0000 |
commit | dc8dec6a70158758b3deeb0da193277ac3699385 (patch) | |
tree | 8c7ccc0a1e8601e96ce58140ff149b5cae23a814 | |
parent | e0016db7d229c022cd138071c496d8d0a62c53c7 (diff) | |
download | postgresql-dc8dec6a70158758b3deeb0da193277ac3699385.tar.gz postgresql-dc8dec6a70158758b3deeb0da193277ac3699385.zip |
Fix documentation comment about restricted environments, per Kevin Jacobs.
-rw-r--r-- | doc/src/sgml/plpython.sgml | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/doc/src/sgml/plpython.sgml b/doc/src/sgml/plpython.sgml index 2de2e746b5f..0a101384ee7 100644 --- a/doc/src/sgml/plpython.sgml +++ b/doc/src/sgml/plpython.sgml @@ -1,4 +1,4 @@ -<!-- $Header: /cvsroot/pgsql/doc/src/sgml/plpython.sgml,v 1.17 2003/06/30 18:31:41 tgl Exp $ --> +<!-- $Header: /cvsroot/pgsql/doc/src/sgml/plpython.sgml,v 1.18 2003/07/01 13:52:29 tgl Exp $ --> <chapter id="plpython"> <title>PL/Python - Python Procedural Language</title> @@ -90,18 +90,13 @@ def __plpython_procedure_myfunc_23456(): available to all Python functions within a session. Use with care. </para> -<!-- NOT CORRECT ANYMORE, IS IT? - <para> - Each function gets its own restricted execution object in the + Each function gets its own execution environment in the Python interpreter, so that global data and function arguments from <function>myfunc</function> are not available to <function>myfunc2</function>. The exception is the data in the <varname>GD</varname> dictionary, as mentioned above. </para> - ---> - </sect1> <sect1 id="plpython-trigger"> |