It would be nice to be able to stub a constructor, such as in this code:
import urllib2
import sinon
stub = sinon.stub(urllib2, 'Request')
This kind of behaviour came for free in Sinon.JS because, in JavaScript, constructors are also functions. In Python we'd have to make a special case for handling constructors.