summaryrefslogtreecommitdiff
path: root/lib/sqlalchemy
diff options
context:
space:
mode:
Diffstat (limited to 'lib/sqlalchemy')
-rw-r--r--lib/sqlalchemy/engine/interfaces.py6
-rw-r--r--lib/sqlalchemy/events.py4
-rw-r--r--lib/sqlalchemy/pool.py4
3 files changed, 7 insertions, 7 deletions
diff --git a/lib/sqlalchemy/engine/interfaces.py b/lib/sqlalchemy/engine/interfaces.py
index ee04a6974..2dd192162 100644
--- a/lib/sqlalchemy/engine/interfaces.py
+++ b/lib/sqlalchemy/engine/interfaces.py
@@ -744,7 +744,7 @@ class Dialect(object):
By default this just returns the cls.
- .. versionadded:: 1.0.1
+ .. versionadded:: 1.0.3
"""
return cls
@@ -763,7 +763,7 @@ class Dialect(object):
events to the engine or its components. In particular, it allows
a dialect-wrapping class to apply dialect-level events.
- .. versionadded:: 1.0.1
+ .. versionadded:: 1.0.3
"""
pass
@@ -1135,6 +1135,6 @@ class ExceptionContext(object):
the invalidation of other connections in the pool is to be performed
based on other conditions, or even on a per-connection basis.
- .. versionadded:: 1.0.1
+ .. versionadded:: 1.0.3
""" \ No newline at end of file
diff --git a/lib/sqlalchemy/events.py b/lib/sqlalchemy/events.py
index dcca9cdee..b2d4b54a9 100644
--- a/lib/sqlalchemy/events.py
+++ b/lib/sqlalchemy/events.py
@@ -405,7 +405,7 @@ class PoolEvents(event.Events):
is checked in. It does not actively close the dbapi_connection
at the point at which it is called.
- .. versionadded:: 1.0.1
+ .. versionadded:: 1.0.3
"""
@@ -1047,7 +1047,7 @@ class DialectEvents(event.Events):
to allow the dialect to connect normally, given the updated
arguments.
- .. versionadded:: 1.0.1
+ .. versionadded:: 1.0.3
"""
diff --git a/lib/sqlalchemy/pool.py b/lib/sqlalchemy/pool.py
index 7e023b992..902309d75 100644
--- a/lib/sqlalchemy/pool.py
+++ b/lib/sqlalchemy/pool.py
@@ -518,7 +518,7 @@ class _ConnectionRecord(object):
:param soft: if True, the connection isn't closed; instead, this
connection will be recycled on next checkout.
- .. versionadded:: 1.0.1
+ .. versionadded:: 1.0.3
.. seealso::
@@ -806,7 +806,7 @@ class _ConnectionFairy(object):
:param soft: if True, the connection isn't closed; instead, this
connection will be recycled on next checkout.
- .. versionadded:: 1.0.1
+ .. versionadded:: 1.0.3
.. seealso::