]> git.saurik.com Git - wxWidgets.git/blame - wxPython/distrib/README.dbg.txt
added missing string definition
[wxWidgets.git] / wxPython / distrib / README.dbg.txt
CommitLineData
f6bcfd97
BP
1This zip file contains versions of the wxWindows and wxPython binaries
2that have been compiled with __WXDEBUG__ defined. This adds code to
3wxWindows that is a bit more agressive about checking parameter
4values, return values, and etc. When the debugging library senses
5something is wrong it will popup a message dialog telling you so.
6Unfortunately the message is specific to the C++ code but it might
7give you a hint about what went wrong and how to fix it.
8
9Another debugging feature is when the wxPython program exits, it will
10print to stdout information about any wxWindows C++ objects that
11havn't been properly cleaned up.
12
c368d904
RD
13This archive contains a new wxWindows DLL named wx[version]d.dll and a
14debugging version of the core wxPython module, wxc_d.pyd. These
15should be put into your wxPython package directory. Also included are
16the debuging version of Python, python_d.exe and python[VER]_d.dll
17which can be put wherever you like.
18
19In order to run the debugging version of wxPython sumply run you
20program with python_d.exe instead of python.exe. This lets the
21debugging version sit side by side with the production version, with
22no need for swapping this around. You will also need _d versions of
23any other extension modules you are using. If you need _d's for any
24of the other standard Python extensions you can get them here, for 2.0
25at least:
26
27http://www.pythonlabs.com/products/python2.0/downloads/BeOpen-Python-2.0-Debug.zip
f6bcfd97
BP
28
29
30Robin