summaryrefslogtreecommitdiff
path: root/lib/extras.py
diff options
context:
space:
mode:
authorPiotr Kasprzyk <ciri@ciri.pl>2013-04-26 10:21:56 +0200
committerDaniele Varrazzo <daniele.varrazzo@gmail.com>2013-04-26 09:59:40 +0100
commit31b6ec63f8ab0bc0333c0cbe9a19543fde437ce2 (patch)
tree591d9e77b7d8ef7d968480dac2e22aa69a8b19a2 /lib/extras.py
parent2eba97de7059b71b953fda9b1720a7059cbbcaf2 (diff)
downloadpsycopg2-31b6ec63f8ab0bc0333c0cbe9a19543fde437ce2.tar.gz
Fix multiple misspellings
Diffstat (limited to 'lib/extras.py')
-rw-r--r--lib/extras.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/extras.py b/lib/extras.py
index c726626..b21e223 100644
--- a/lib/extras.py
+++ b/lib/extras.py
@@ -1,7 +1,7 @@
"""Miscellaneous goodies for psycopg2
This module is a generic place used to hold little helper functions
-and classes untill a better place in the distribution is found.
+and classes until a better place in the distribution is found.
"""
# psycopg/extras.py - miscellaneous extra goodies for psycopg
#
@@ -131,7 +131,7 @@ class DictCursor(DictCursorBase):
self._query_executed = 0
class DictRow(list):
- """A row object that allow by-colmun-name access to data."""
+ """A row object that allow by-column-name access to data."""
__slots__ = ('_index',)
@@ -406,7 +406,7 @@ class MinTimeLoggingConnection(LoggingConnection):
This is just an example of how to sub-class `LoggingConnection` to
provide some extra filtering for the logged queries. Both the
- `inizialize()` and `filter()` methods are overwritten to make sure
+ `initialize()` and `filter()` methods are overwritten to make sure
that only queries executing for more than ``mintime`` ms are logged.
Note that this connection uses the specialized cursor