aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Lane <tgl@sss.pgh.pa.us>2002-09-22 18:47:24 +0000
committerTom Lane <tgl@sss.pgh.pa.us>2002-09-22 18:47:24 +0000
commit634e440b582e9b4dcf7d7626964c9f0767dd7f70 (patch)
tree38fc2414eec3cbfd5aec5c6a48100de1d2014817
parent9946b83dedb629b9eff1c063b9fbcaab25c209df (diff)
downloadpostgresql-634e440b582e9b4dcf7d7626964c9f0767dd7f70.tar.gz
postgresql-634e440b582e9b4dcf7d7626964c9f0767dd7f70.zip
Fix busted markup.
-rw-r--r--doc/src/sgml/plpython.sgml16
1 files changed, 9 insertions, 7 deletions
diff --git a/doc/src/sgml/plpython.sgml b/doc/src/sgml/plpython.sgml
index e22d292ccb9..99b086dc2c0 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.12 2002/09/21 18:32:53 petere Exp $ -->
+<!-- $Header: /cvsroot/pgsql/doc/src/sgml/plpython.sgml,v 1.13 2002/09/22 18:47:24 tgl Exp $ -->
<chapter id="plpython">
<title>PL/Python - Python Procedural Language</title>
@@ -221,12 +221,14 @@ plan = plpy.prepare("SOME OTHER QUERY")
execution environment, further restricts it to prevent the use of
the file <function>open</> call, and allows only modules from a
specific list to be imported. Presently, that list includes:
- <literal>array</>, <>bisect</>, <>binascii</>, <>calendar</>,
- <>cmath</>, <>codecs</>, <>errno</>, <>marshal</>, <>math</>,
- <>md5</>, <>mpz</>, <>operator</>, <>pcre</>, <>pickle</>,
- <>random</>, <>re</>, <>regex</>, <>sre</>, <>sha</>, <>string</>,
- <>StringIO</>, <>struct</>, <>time</>, <>whrandom</>, and
- <>zlib</>.
+ <literal>array</>, <literal>bisect</>, <literal>binascii</>,
+ <literal>calendar</>, <literal>cmath</>, <literal>codecs</>,
+ <literal>errno</>, <literal>marshal</>, <literal>math</>, <literal>md5</>,
+ <literal>mpz</>, <literal>operator</>, <literal>pcre</>,
+ <literal>pickle</>, <literal>random</>, <literal>re</>, <literal>regex</>,
+ <literal>sre</>, <literal>sha</>, <literal>string</>, <literal>StringIO</>,
+ <literal>struct</>, <literal>time</>, <literal>whrandom</>, and
+ <literal>zlib</>.
</para>
</sect1>