Документ взят из кэша поисковой машины. Адрес оригинального документа : http://kodomo.fbb.msu.ru/hg/allpy/file/c54d6100005b/allpy/util.py
Дата изменения: Unknown
Дата индексирования: Sun Feb 3 20:06:19 2013
Кодировка:
allpy: c54d6100005b allpy/util.py

allpy

view allpy/util.py @ 291:c54d6100005b

allpy.fasta.save_file: also do NOT produce extra spaces if either of name or description is not given
author Daniil Alexeyevsky <me.dendik@gmail.com>
date Thu, 16 Dec 2010 03:04:15 +0300
parents
children 12a2dfa5f2a8
line source
1 """Miscellanous utilities.
2 """
4 def unzip(seq):
5 a, b = [], []
6 for x, y in seq:
7 a.append(x)
8 b.append(y)
9 return a, b
11 # vim: set et ts=4 sts=4 sw=4: