From: Robin Dunn Date: Mon, 26 Apr 2004 22:22:41 +0000 (+0000) Subject: More details about the internal module name changes X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/26779945a81fef558a1eb326d0150d4cbd0f8baa More details about the internal module name changes git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@26974 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/wxPython/docs/MigrationGuide.txt b/wxPython/docs/MigrationGuide.txt index 1aeff04769..9f14102f5c 100644 --- a/wxPython/docs/MigrationGuide.txt +++ b/wxPython/docs/MigrationGuide.txt @@ -598,8 +598,8 @@ provided by the makers of the ActiveX control that you are using. -Other Stuff ------------ +Obsolete Modules +---------------- Instead of over a dozen separate extension modules linked together into a single extension module, the "core" module is now just a few @@ -608,11 +608,52 @@ later into the main namespace via Python code. Because of the above and also because of the way the new SWIG works, the "internal" module names have changed, but you shouldn't have been -using them anyway so it shouldn't bother you. ;-) +using them anyway so it shouldn't bother you. ;-) In case you were +erroneously using them in 2.4, here are the internal extension modules +no longer exist: + + * clip_dnd + * cmndlgs + * controls + * controls2 + * events + * filesys + * fonts + * frames + * gdi + * image + * mdi + * misc + * misc2 + * printfw + * sizers + * stattool + * streams + * utils + * windows + * windows2 + * windows3 + +They have been replaced by the following, but please remember that +these are just "implementation details" and you shoudl reall be using +the objects in these modules via the wx or wxPython.wx packages: + + * _core + * _gdi + * _windows + * _controls + * _misc + The help module no longer exists and the classes therein are now part of the core module imported with wxPython.wx or the wx package. + + + +Other Stuff +----------- + wxPyDefaultPosition and wxPyDefaultSize are gone. Use the wxDefaultPosition and wxDefaultSize objects instead.