Skip to content
jtpavlock edited this page Jul 21, 2020 · 54 revisions

Porting to Python 3

As of version 1.4, beets supports both Python 3.x and 2.x. Sometime soon, we'll drop support for 2.x.

Coding conventions

  • calls to map() should be wrapped in list() when a list is expected as it returns an iter in python 3

PY3 only TODO