~ubuntu-branches/ubuntu/raring/python3.2/raring

« back to all changes in this revision

Viewing changes to Doc/faq/windows.rst

  • Committer: Package Import Robot
  • Author(s): Matthias Klose
  • Date: 2011-09-05 22:01:13 UTC
  • mfrom: (1.1.12 upstream)
  • Revision ID: package-import@ubuntu.com-20110905220113-gmku3knwah89ojat
Tags: 3.2.2-0ubuntu1
* Python 3.2.2 release.
* Search headers in /usr/include/ncursesw for the curses/panel extensions.

Show diffs side-by-side

added added

removed removed

Lines of Context:
543
543
 
544
544
If you can't change compilers or flags, try using :c:func:`Py_RunSimpleString`.
545
545
A trick to get it to run an arbitrary file is to construct a call to
546
 
:func:`execfile` with the name of your file as argument.
 
546
:func:`exec` and :func:`open` with the name of your file as argument.
547
547
 
548
548
Also note that you can not mix-and-match Debug and Release versions.  If you
549
 
wish to use the Debug Multithreaded DLL, then your module *must* have an "_d"
 
549
wish to use the Debug Multithreaded DLL, then your module *must* have ``_d``
550
550
appended to the base name.
551
551
 
552
552