PyROOT with Apache and django

Good call on stderr. Cling does print the wrapper

#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Wformat-security"
__attribute__((used)) extern "C" void __cf_0(void* obj, int nargs, void** args, void* ret)
{
   if (nargs == 0) {
      if (ret) {
         new (ret) (bool) (((PyROOT::TPyROOTApplication*)obj)->CreatePyROOTApplication());
         return;
      }
      else {
         ((PyROOT::TPyROOTApplication*)obj)->CreatePyROOTApplication();
         return;
      }
   }
   if (nargs == 1) {
      if (ret) {
         new (ret) (bool) (((PyROOT::TPyROOTApplication*)obj)->CreatePyROOTApplication(*(bool*)args[0]));
         return;
      }
      else {
         ((PyROOT::TPyROOTApplication*)obj)->CreatePyROOTApplication(*(bool*)args[0]);
         return;
      }
   }
}
#pragma clang diagnostic pop