------------------
There is a backward incompatible change in this release. importd has removed
atexit magic, which means a call to d.main() must be included somewhere.
.. code-block:: python
from importd import d
d("/")
def hello(request):
return d.HttpResponse("hello world")
if __name__ == "__main__":
d.main() NOTE THIS
* BACKWARD INCOMPATIBLE: remove atexit magic, d.main() is the replacement
* gunicorn cleanly exits now
* tests, support django 1.4.3 and 1.5.1 for each of python 2.6, 2.7 and 3.3
* less magic, no more sys.modules tweaking
* runserver now reloads when any file changes
* added auto generated MANIFEST.in (using check-manifest)
* added support for mounting urls to custom locations