Update of /cvsroot/monetdb/sql/src/test/BugTracker-2009/Tests
In directory 
23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv6491/src/test/BugTracker-2009/Tests

Modified Files:
      Tag: Nov2009
        create_on_ro_db_crash.SF-2830238.py lost_update.SF-2790020.py 
        set_history_and_drop_table.SF-2607045.SQL.py 
Log Message:
Get rid of our own copy of subprocess.py.  We now require a Python version >= 
2.4.

U create_on_ro_db_crash.SF-2830238.py
Index: create_on_ro_db_crash.SF-2830238.py
===================================================================
RCS file: 
/cvsroot/monetdb/sql/src/test/BugTracker-2009/Tests/create_on_ro_db_crash.SF-2830238.py,v
retrieving revision 1.2
retrieving revision 1.2.2.1
diff -u -d -r1.2 -r1.2.2.1
--- create_on_ro_db_crash.SF-2830238.py 21 Sep 2009 14:14:11 -0000      1.2
+++ create_on_ro_db_crash.SF-2830238.py 12 Oct 2009 15:36:21 -0000      1.2.2.1
@@ -1,11 +1,7 @@
 import sys
 import os
 import time
-try:
-    import subprocess
-except ImportError:
-    # use private copy for old Python versions
-    import MonetDBtesting.subprocess26 as subprocess
+import subprocess
 
 def server():
     s = subprocess.Popen("%s --dbinit='include sql;' --set gdk_readonly=yes" % 
os.getenv('MSERVER'),

U lost_update.SF-2790020.py
Index: lost_update.SF-2790020.py
===================================================================
RCS file: 
/cvsroot/monetdb/sql/src/test/BugTracker-2009/Tests/lost_update.SF-2790020.py,v
retrieving revision 1.2
retrieving revision 1.2.4.1
diff -u -d -r1.2 -r1.2.4.1
--- lost_update.SF-2790020.py   20 May 2009 13:41:45 -0000      1.2
+++ lost_update.SF-2790020.py   12 Oct 2009 15:36:21 -0000      1.2.4.1
@@ -1,11 +1,7 @@
 import sys
 import os
 import time
-try:
-    import subprocess
-except ImportError:
-    # use private copy for old Python versions
-    import MonetDBtesting.subprocess26 as subprocess
+import subprocess
 
 def server():
     s = subprocess.Popen("%s --dbinit='include sql;'" % os.getenv('MSERVER'),

U set_history_and_drop_table.SF-2607045.SQL.py
Index: set_history_and_drop_table.SF-2607045.SQL.py
===================================================================
RCS file: 
/cvsroot/monetdb/sql/src/test/BugTracker-2009/Tests/set_history_and_drop_table.SF-2607045.SQL.py,v
retrieving revision 1.2.6.1
retrieving revision 1.2.6.2
diff -u -d -r1.2.6.1 -r1.2.6.2
--- set_history_and_drop_table.SF-2607045.SQL.py        9 Oct 2009 15:20:45 
-0000       1.2.6.1
+++ set_history_and_drop_table.SF-2607045.SQL.py        12 Oct 2009 15:36:21 
-0000      1.2.6.2
@@ -1,9 +1,5 @@
 import os, sys
-try:
-    import subprocess
-except ImportError:
-    # use private copy for old Python versions
-    import MonetDBtesting.subprocess26 as subprocess
+import subprocess
 
 def main():
     dir = os.getenv('TSTSRCDIR')


------------------------------------------------------------------------------
Come build with us! The BlackBerry(R) Developer Conference in SF, CA
is the only developer event you need to attend this year. Jumpstart your
developing skills, take BlackBerry mobile applications to market and stay 
ahead of the curve. Join us from November 9 - 12, 2009. Register now!
http://p.sf.net/sfu/devconference
_______________________________________________
Monetdb-sql-checkins mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/monetdb-sql-checkins

Reply via email to