[Biopython-dev] Post Biopython 1.62 release, clean-up after dropping Python 2.5

Sergei Lebedev superbobry at gmail.com
Thu Aug 29 20:34:59 UTC 2013


On Thu, Aug 29, 2013 at 8:33 PM, Peter Cock <p.j.a.cock at googlemail.com>wrote:

> Here's another fairly easy task for another new volunteer?:
>
> (8) Excluding doctests and the Tutorial, use print function
> rather than print statement. e.g. replace this:
>
> print variable1, variable2
>
> with this:
>
> from __future__ import print_function
> ...
> print(variable1, variable2)
>
> Note that I am deliberately not suggesting we switch the
> user visible examples on our documentation yet - that
> deserves some discussion first.


So the task is to remove print statement from the code only, right? I think
I can do this, should I use a separate branch?

Sergei



More information about the Biopython-dev mailing list