summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorFederico Di Gregorio <fog@initd.org>2005-10-18 05:57:02 +0000
committerFederico Di Gregorio <fog@initd.org>2005-10-18 05:57:02 +0000
commitc7c2c38bcd412abd71d297fd8fed12a98cd67dd5 (patch)
treeedfaa7d15ab8bb967987a5b33d1497e23c6ee80e /lib
parent0c67c641a8ddbe2f19dc337fa617ab350733ef49 (diff)
downloadpsycopg2-c7c2c38bcd412abd71d297fd8fed12a98cd67dd5.tar.gz
Epydoc clean. :D
Diffstat (limited to 'lib')
-rw-r--r--lib/extensions.py8
-rw-r--r--lib/psycopg1.py2
2 files changed, 5 insertions, 5 deletions
diff --git a/lib/extensions.py b/lib/extensions.py
index 1d3f911..239d7fa 100644
--- a/lib/extensions.py
+++ b/lib/extensions.py
@@ -2,10 +2,10 @@
This module holds all the extensions to the DBAPI-2.0 provided by psycopg.
- connection -- the new-type inheritable connection class
- cursor -- the new-type inheritable cursor class
- adapt() -- exposes the PEP-246 compatile adapting machanism used
- by psycopg to adapt Python types to PostgreSQL ones
+ - connection -- the new-type inheritable connection class
+ - cursor -- the new-type inheritable cursor class
+ - adapt() -- exposes the PEP-246 compatile adapting machanism used
+ by psycopg to adapt Python types to PostgreSQL ones
"""
# psycopg/extensions.py - DBAPI-2.0 extensions specific to psycopg
#
diff --git a/lib/psycopg1.py b/lib/psycopg1.py
index 2b06ca7..82a3966 100644
--- a/lib/psycopg1.py
+++ b/lib/psycopg1.py
@@ -2,7 +2,7 @@
This module uses the new style connection and cursor types to build a psycopg
1.1.1.x compatibility layer. It should be considered a temporary hack to run
-old code hile porting to psycopg 2. Import it as follows:
+old code hile porting to psycopg 2. Import it as follows::
from psycopg2 import psycopg1 as psycopg
"""