Never been to DZone Snippets before?

Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world

About this user

Korakot Chaovavanich http://korakot.stumbleupon.com

« Newer Snippets
Older Snippets »
Showing 1-1 of 1 total  RSS 

Calling Python from Symbian C++

   1  
   2  CSPyInterpreter* it = CSPyInterpreter::NewInterpreterL();
   3  CleanupStack::PushL(it);
   4  PyEval_RestoreThread(PYTHON_TLS->thread_state);
   5  
   6  PyRun_SimpleString("open(r'c:\\foo.txt', 'w').write('hello')\n");
   7  
   8  PyEval_SaveThread();
   9  CleanupStack::PopAndDestroy(it);

From Nokia Forum
« Newer Snippets
Older Snippets »
Showing 1-1 of 1 total  RSS