Summary

We'll cover the following...

What have we learned?

  1. Porting any non-trivial amount of code from Python 2 to Python 3 is going to be a pain. There’s no way around it. It’s hard.
  2. The automated 2to3 tool is helpful as far as it goes, but it will only do the easy parts — function renames, module
...