Mac binaries
[jabaws.git] / website / archive / binaries / mac / src / globplot / biopython-1.50 / Bio / Writer.py
1 """Part of an old unused and undocumented sequence writing framework (DEPRECATED)."""
2
3 import warnings
4 warnings.warn("Bio.Writer and Bio.writer.* are deprecated. If you do use"\
5               +" these modules, please get in touch via the mailing list or"\
6               +" bugzilla to avoid their permanent removal from Biopython.", \
7               DeprecationWarning)
8
9 class Writer:
10     def __init__(self, outfile):
11         self.outfile = outfile
12     def writeHeader(self):
13         pass
14     def write(self, record):
15         pass
16     def writeFooter(self):
17         pass