From f2d155260978bb4976a96da4ebc51d0a9be610c9 Mon Sep 17 00:00:00 2001 From: sagitter Date: Jun 21 2018 17:43:28 +0000 Subject: Include Patch0 --- diff --git a/python-biopython-bug1693.patch b/python-biopython-bug1693.patch new file mode 100644 index 0000000..9f158ea --- /dev/null +++ b/python-biopython-bug1693.patch @@ -0,0 +1,12 @@ +index 18b0a9f9c7..6faf95e569 100644 +--- a/Bio/Nexus/Nexus.py ++++ b/Bio/Nexus/Nexus.py +@@ -444,6 +444,8 @@ def _kill_comments_and_break_lines(text): + + NOTE: this function is very slow for large files, and obsolete when using C extension cnexus + """ ++ if not text: ++ return "" + contents = iter(text) + newtext = [] + newline = []