]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
dialects/mssql/pymssql.py: Remove second two paragraphs, as requested by @zzzeek.
authorMarc Abramowitz <marc@marc-abramowitz.com>
Mon, 3 Mar 2014 17:15:28 +0000 (09:15 -0800)
committerMarc Abramowitz <marc@marc-abramowitz.com>
Mon, 3 Mar 2014 17:15:28 +0000 (09:15 -0800)
lib/sqlalchemy/dialects/mssql/pymssql.py

index 0d016dcaf50596421d3ab632ffecee266fd8b6e9..4fbcbaa64c64a3717f861cc84e1b5b2a91b27793 100644 (file)
 pymssql is a Python module that wraps FreeTDS (a C library) and provides a
 DB-API interface, which this dialect uses.
 
-The 1.x versions of pymssql were written mostly in C, with a Python "outer
-layer". These 1.x versions are no longer maintained.
-
-The 2.x versions of pymssql are written completely in Cython so the code is
-translated into C, which is compiled, leading to better performance. The 2.x
-versions have had a good amount of development activity in 2013, and so far
-this has continued in 2014. pymssql 2.x supports Python 2.6, Python 2.7, and
-Python 3.3 and up.
-
 Note that if you experience problems or limitations when using this dialect,
 the problem could be in the dialect, in pymssql, or in FreeTDS (or it could
 even be a limitation of SQL Server). So it would be great if you could isolate