Docstrings fixes.

This commit is contained in:
Federico Di Gregorio 2005-09-30 16:18:26 +00:00
parent b7e5e5e272
commit 39136e1af4
2 changed files with 7 additions and 2 deletions

View File

@ -1,3 +1,8 @@
2005-10-01 Federico Di Gregorio <fog@debian.org>
* psycopg/connection_type.c: applied patch from Matt Goodall to
fix some doc strings.
2005-09-23 Federico Di Gregorio <fog@debian.org>
* lib/pool.py: applied patch from piro to avoid the scan of the

View File

@ -138,7 +138,7 @@ psyco_conn_rollback(connectionObject *self, PyObject *args)
/* set_isolation_level method - switch connection isolation level */
#define psyco_conn_set_isolation_level_doc \
"set_isolation_level(level) -> swicth isolation level to 'level'"
"set_isolation_level(level) -> switch isolation level to 'level'"
static PyObject *
psyco_conn_set_isolation_level(connectionObject *self, PyObject *args)
@ -167,7 +167,7 @@ psyco_conn_set_isolation_level(connectionObject *self, PyObject *args)
/* set_isolation_level method - switch connection isolation level */
#define psyco_conn_set_client_encoding_doc \
"set_client_encoding(level) -> swicth isolation level to 'level'"
"set_client_encoding(encoding) -> set client encoding 'encoding'"
static PyObject *
psyco_conn_set_client_encoding(connectionObject *self, PyObject *args)