diff --git a/ChangeLog b/ChangeLog index 7a4fd2de..02aa9e52 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2005-10-01 Federico Di Gregorio + + * psycopg/connection_type.c: applied patch from Matt Goodall to + fix some doc strings. + 2005-09-23 Federico Di Gregorio * lib/pool.py: applied patch from piro to avoid the scan of the diff --git a/psycopg/connection_type.c b/psycopg/connection_type.c index cb9db0bc..b05c6682 100644 --- a/psycopg/connection_type.c +++ b/psycopg/connection_type.c @@ -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)