]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
fixed [ticket:188] updated changelog
authorMike Bayer <mike_mp@zzzcomputing.com>
Mon, 29 May 2006 22:41:30 +0000 (22:41 +0000)
committerMike Bayer <mike_mp@zzzcomputing.com>
Mon, 29 May 2006 22:41:30 +0000 (22:41 +0000)
CHANGES
lib/sqlalchemy/engine/url.py

diff --git a/CHANGES b/CHANGES
index bd887e7a7f282fcac3cb8445d9607c5850550380..b89461904fa1b851c5f467a4999b04140418c282 100644 (file)
--- a/CHANGES
+++ b/CHANGES
@@ -1,3 +1,11 @@
+0.2.2
+- big improvements to polymorphic inheritance behavior, enabling it
+to work with adjacency list table structures [ticket:190]
+- fixed "echo_pool" flag on create_engine()
+- fix to docs, removed incorrect info that close() is unsafe to use
+with threadlocal strategy (its totally safe !)
+- create_engine() can take URLs as string or unicode [ticket:188]
+
 0.2.1
 - "pool" argument to create_engine() properly propigates
 - fixes to URL, raises exception if not parsed, does not pass blank
index 5242254e2bdb1725120bcff665530ac199acb7ad..a4297f5db1aa9ce1b086e1bf978d2b2572ed7f38 100644 (file)
@@ -43,7 +43,7 @@ class URL(object):
     
 
 def make_url(name_or_url):
-    if isinstance(name_or_url, str):
+    if isinstance(name_or_url, str) or isinstance(name_or_url, unicode):
         return _parse_rfc1738_args(name_or_url)
     else:
         return name_or_url