~ubuntu-branches/ubuntu/trusty/python-biopython/trusty-proposed

« back to all changes in this revision

Viewing changes to Tests/test_Fasta.py

  • Committer: Bazaar Package Importer
  • Author(s): Philipp Benner
  • Date: 2009-08-24 09:29:27 UTC
  • mfrom: (1.3.3 upstream) (4.1.4 sid)
  • Revision ID: james.westby@ubuntu.com-20090824092927-2wwh36vwnfgn98kl
Tags: 1.51final-2
Merged patch from ubuntu to make the package ready for
python2.6 (Closes: #543236).

Show diffs side-by-side

added added

removed removed

Lines of Context:
7
7
import sys
8
8
import unittest
9
9
from types import *
 
10
 
 
11
import warnings
 
12
warnings.filterwarnings("ignore", category=DeprecationWarning)
10
13
from Bio import Fasta
 
14
warnings.resetwarnings()
11
15
 
12
16
from Bio import SeqRecord
13
17
from Bio import Seq