This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author tiagoantao
Recipients benjamin.peterson, eric.araujo, tiagoantao
Date 2010-07-11.16:13:05
SpamBayes Score 2.5730882e-05
Marked as misclassified No
Message-id <1278864788.53.0.683988897597.issue9217@psf.upfronthosting.co.za>
In-reply-to
Content
A few more problematic examples (hope it helps)
        >>> my_mseq = MutableSeq("MKQHKAMIVALIVICITAVVAAL", \
                                 IUPAC.protein)

Note the line continuation
>>> rec.letter_annotations["secondary_structure"] = \
(The same pattern)

Another (different)
        """Returns a simple text representation of the codon table

        e.g.
        >>> import Bio.Data.CodonTable
        >>> print Bio.Data.CodonTable.standard_dna_table
        >>> print Bio.Data.CodonTable.generic_by_id[1]"""

And (the original)
>>> class CreatePeople(DocSQL.Create):
...     \"""
...     CREATE TEMPORARY TABLE people
...     (id INT UNSIGNED NOT NULL PRIMARY KEY AUTO_INCREMENT,
...     last_name TINYTEXT,
...     first_name TINYTEXT)
...     \"""
...

Hope it helps
History
Date User Action Args
2010-07-11 16:13:08tiagoantaosetrecipients: + tiagoantao, benjamin.peterson, eric.araujo
2010-07-11 16:13:08tiagoantaosetmessageid: <1278864788.53.0.683988897597.issue9217@psf.upfronthosting.co.za>
2010-07-11 16:13:06tiagoantaolinkissue9217 messages
2010-07-11 16:13:05tiagoantaocreate