biopython / biopython.github.io

Source of biopython.org website, migrated from MediaWiki
biopython.org
154 stars 284 forks source link

Fix a depreciated example #199

Closed RPINerd closed 1 year ago

RPINerd commented 1 year ago

itertools no longer uses *.next() call izip() is depreciated and replaced by built in zip()

peterjc commented 1 year ago

That looks OK as a Python 2 to 3 change - were you able to test this?

RPINerd commented 1 year ago

That looks OK as a Python 2 to 3 change - were you able to test this?

Yes! Hah I actually was following the example to implement it in a new script I was putting together and had to do the two committed changes to get things working on py3

peterjc commented 1 year ago

Great, thank you!