Deprecated code corrections for supporting Python 2.6. Many of the Python 2.6 eggs are still throwing DeprecationWarning messages, so some things still won't work. Eggs for 2.6 need to be re-scrambled after corrections are made.

This commit is contained in:
Greg Von Kuster
2009-08-14 15:37:31 -04:00
parent 1b460feda2
commit d0d7875192
26 changed files with 120 additions and 63 deletions
+1 -1
View File
@@ -1,6 +1,6 @@
#!/usr/bin/env python
from Bio import GenBank
import sys, os, sets, textwrap
import sys, os, textwrap
assert sys.version_info[:2] >= ( 2, 4 )
+1 -1
View File
@@ -1,6 +1,6 @@
#!/usr/bin/env python
import urllib
import sys, os, sets
import sys, os
assert sys.version_info[:2] >= ( 2, 4 )