Fix 'the the' error

This commit is contained in:
Andrew M. Kuchling 2007-04-27 22:51:38 +00:00
parent e432788d3f
commit 59c5afdf4a
1 changed files with 2 additions and 2 deletions

View File

@ -226,7 +226,7 @@ Connection Objects
transaction support. [3]
In case a database does provide transactions this method
causes the the database to roll back to the start of any
causes the database to roll back to the start of any
pending transaction. Closing a connection without
committing the changes first will cause an implicit
rollback to be performed.
@ -573,7 +573,7 @@ Implementation Hints for Module Authors
* The preferred object type for Binary objects are the
buffer types available in standard Python starting with
version 1.5.2. Please see the Python documentation for
details. For information about the the C interface have a
details. For information about the C interface have a
look at Include/bufferobject.h and
Objects/bufferobject.c in the Python source
distribution.