I realise you've probably got more important issues to work on but maybe one for the backlog...
The Python logging API supports invocations such as:
log.debug("ordering %d shares of %r", amount, sid)
The Quantopian API prints the unformatted format string and ignores the other arguments.
Not a big issue and contrary to the logging module not even that useful (output is always logged anyway). From a least surprises principle it would be nice if the Python conventions would be supported too though.