← Back to context

Comment by lmm

2 years ago

I don't remember the specifics, but I spent at least a few weeks early in my career fixing a Python 2.3 codebase to run on 2.4.

In the GP you said 2.5 and 2.6, not 2.4.

That said, I remember all three of those transitions (2.3 to 2.4, 2.4 to 2.5, and 2.5 to 2.6), and I remember changing Python code to make use of new features introduced in those transitions (for example, using with statements and context managers in 2.5), but those aren't breaking changes; the old code still worked, it just wasn't as robust as using the new features.

  • > In the GP you said 2.5 and 2.6, not 2.4.

    Sorry, yes, fixing a 2.4 codebase to run on 2.5. It was a while ago.