#2 Make resultsdb_api Python 3 compatible
Closed: Fixed 6 years ago Opened 7 years ago by adamwill.

It'd be nice if resultsdb_api worked with Python 3 and we had Python 3 package builds for it in Fedora / EPEL (so I could do the same for resultsdb_conventions).

From a quick look the conversion wouldn't be a lot of work; the uses of unicode() can be replaced with six.text_type() and the uses of dict.iteritems() can just be replaced with dict.items() (if it's not really a big deal that this is a list on Py 2) or six.iteritems(dict) (if we really need to keep them as iterators on both).

Of course, it'd be easier to be confident if the test suite worked. ;)


I believe we ended up doing much of this in these two commits.

Metadata Update from @jskladan:
- Issue close_status updated to: Fixed
- Issue status updated to: Closed (was: Open)

6 years ago

Login to comment on this ticket.

Metadata