/alps/pcitool

To get this branch, use:
bzr branch http://suren.me/webbzr/alps/pcitool

« back to all changes in this revision

Viewing changes to pcilib/py.c

  • Committer: Vasilii Chernov
  • Date: 2016-03-03 14:38:32 UTC
  • mto: This revision was merged to the branch mainline in revision 372.
  • Revision ID: vchernov@inr.ru-20160303143832-0rlinjoy3zczhjt2
1. Pcipywrap: add persistent locking wrappings
2. html-server: 
   - add scripts tab
   - change tab view to jQuery tabs

Show diffs side-by-side

added added

removed removed

Lines of Context:
130
130
            // Since python is being initializing from c programm, it needs to initialize threads to work properly with c threads
131
131
        PyEval_InitThreads();
132
132
        PyEval_ReleaseLock();
133
 
        ctx->py->finalyze = 1;
 
133
             ctx->py->finalyze = 1;
134
134
    }
135
135
                
136
136
    ctx->py->main_module = PyImport_AddModule("__parser__");