]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
oops, checked in a pdb
authorMike Bayer <mike_mp@zzzcomputing.com>
Thu, 28 May 2009 00:49:31 +0000 (00:49 +0000)
committerMike Bayer <mike_mp@zzzcomputing.com>
Thu, 28 May 2009 00:49:31 +0000 (00:49 +0000)
lib/sqlalchemy/engine/ddl.py
lib/sqlalchemy/schema.py
test/testlib/config.py

index ad040201d94342d2faa24ffa087a27fc6d21ef12..2e3c23c970e49cc8c99558cf22635191af2f4627 100644 (file)
@@ -6,9 +6,6 @@
 
 """Routines to handle CREATE/DROP workflow."""
 
-### TODO: CREATE TABLE and DROP TABLE have been moved out so far.
-### Index, ForeignKey, etc. still need to move.
-
 from sqlalchemy import engine, schema
 from sqlalchemy.sql import util as sql_util
 
index 2da2705df975cf710fed7d688407451b1007e61d..5849c5998d37477a966dc23d55fe4bc04927e739 100644 (file)
@@ -98,8 +98,6 @@ class _TableSingleton(visitors.VisitableType):
         try:
             table = metadata.tables[key]
             if not useexisting and bool(args):
-                import pdb
-                pdb.set_trace()
                 raise exc.InvalidRequestError(
                     "Table '%s' is already defined for this MetaData instance.  "
                     "Specify 'useexisting=True' to redefine options and "
index 2bec17bec74eb27957ba87352c237fbdb797e16d..20ad26a2e91b3419790c74d85de7f6fc6ca90182 100644 (file)
@@ -1,5 +1,8 @@
 import optparse, os, sys, re, ConfigParser, time, warnings
+
+# 2to3
 import StringIO
+
 logging, require = None, None