SynBioDex / pySBOL2

A pure Python implementation of the SBOL standard.
Apache License 2.0
20 stars 6 forks source link

Make Document.readString() clear the Document #371

Closed tcmitchell closed 4 years ago

tcmitchell commented 4 years ago

Document.readString() should clear the document the way Document.read() does. Document.appendString() does the job that Document.readString() used to do.

Transitioned PartShop.pull() and IGEM_STANDARD_ASSEMBLY() to use Document.appendString() instead of Document.readString().

TestDocument.test_read_string_clear() performs the test related to the initial issue, #358

Closes #358