The docs here http://twistedmatrix.com/documents/current/api/twisted.internet.task.html#cooperate suggest that the difference is that cooperate returns a CooperativeTask whereas coiterate returns a Deferred (evidenced by my own tests, not specified in docs). I've invested the weekend learning the basics of Twisted, so I understand what a Deferred is and I've been a good boy sending my blocking code off to threads/processes. I understand coiterate goes as fast as Twisted allows it, whereas LoopingCall tries to fire at the selected interval.
My hunch is that cooperate() tasks are done inside CooperativeTask objects and coiterate() within Deferred objects. If someone can summarize the differences in behavior between cooperate and coiterate I'd appreciate it.