This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author eric.snow
Recipients Arfrever, brett.cannon, eric.snow, scoder
Date 2012-08-12.07:11:32
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1344755492.98.0.873369571601.issue15623@psf.upfronthosting.co.za>
In-reply-to
Content
in ___init__.c:963+, prior to executing the module proper (Python2 and PyPy handling removed):

  /*--- Module creation code ---*/
  __pyx_m = PyModule_Create(&__pyx_moduledef);
  if (!__pyx_m) {...};
  __pyx_b = PyImport_AddModule(__Pyx_NAMESTR(__Pyx_BUILTIN_MODULE_NAME));
  if (!__pyx_b) {...};
  if (__Pyx_SetAttrString(__pyx_m, "__builtins__", __pyx_b) < 0) {...};
  /*--- Initialize various global constants etc. ---*/
  if (unlikely(__Pyx_InitGlobals() < 0)) {...}
  if (__pyx_module_is_main_my_test_package) {
    if (__Pyx_SetAttrString(__pyx_m, "__name__", __pyx_n_s____main__) < 0) {...};
  }
  if (__Pyx_SetAttrString(__pyx_m, "__file__", __pyx_kp_u_6) < 0) {...};
  __pyx_t_1 = Py_BuildValue("[O]", __pyx_kp_u_7); if (unlikely(!__pyx_t_1)) {...}
  __Pyx_GOTREF(__pyx_t_1);
  if (__Pyx_SetAttrString(__pyx_m, "__path__", __pyx_t_1) < 0) {...};
  __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
  /*--- Builtin init code ---*/
  if (unlikely(__Pyx_InitCachedBuiltins() < 0)) {...}
  /*--- Constants init code ---*/
  if (unlikely(__Pyx_InitCachedConstants() < 0)) {...}
History
Date User Action Args
2012-08-12 07:11:33eric.snowsetrecipients: + eric.snow, brett.cannon, scoder, Arfrever
2012-08-12 07:11:32eric.snowsetmessageid: <1344755492.98.0.873369571601.issue15623@psf.upfronthosting.co.za>
2012-08-12 07:11:32eric.snowlinkissue15623 messages
2012-08-12 07:11:32eric.snowcreate