|
1 | | -<!-- $Header: /cvsroot/pgsql/doc/src/sgml/plpython.sgml,v 1.12 2002/09/21 18:32:53 petere Exp $ --> |
| 1 | +<!-- $Header: /cvsroot/pgsql/doc/src/sgml/plpython.sgml,v 1.13 2002/09/22 18:47:24 tgl Exp $ --> |
2 | 2 |
|
3 | 3 | <chapter id="plpython"> |
4 | 4 | <title>PL/Python - Python Procedural Language</title> |
@@ -221,12 +221,14 @@ plan = plpy.prepare("SOME OTHER QUERY") |
221 | 221 | execution environment, further restricts it to prevent the use of |
222 | 222 | the file <function>open</> call, and allows only modules from a |
223 | 223 | specific list to be imported. Presently, that list includes: |
224 | | - <literal>array</>, <>bisect</>, <>binascii</>, <>calendar</>, |
225 | | - <>cmath</>, <>codecs</>, <>errno</>, <>marshal</>, <>math</>, |
226 | | - <>md5</>, <>mpz</>, <>operator</>, <>pcre</>, <>pickle</>, |
227 | | - <>random</>, <>re</>, <>regex</>, <>sre</>, <>sha</>, <>string</>, |
228 | | - <>StringIO</>, <>struct</>, <>time</>, <>whrandom</>, and |
229 | | - <>zlib</>. |
| 224 | + <literal>array</>, <literal>bisect</>, <literal>binascii</>, |
| 225 | + <literal>calendar</>, <literal>cmath</>, <literal>codecs</>, |
| 226 | + <literal>errno</>, <literal>marshal</>, <literal>math</>, <literal>md5</>, |
| 227 | + <literal>mpz</>, <literal>operator</>, <literal>pcre</>, |
| 228 | + <literal>pickle</>, <literal>random</>, <literal>re</>, <literal>regex</>, |
| 229 | + <literal>sre</>, <literal>sha</>, <literal>string</>, <literal>StringIO</>, |
| 230 | + <literal>struct</>, <literal>time</>, <literal>whrandom</>, and |
| 231 | + <literal>zlib</>. |
230 | 232 | </para> |
231 | 233 | </sect1> |
232 | 234 |
|
|