From 9c952d068f9b2d77b15ec105c7adcf3acf1e6d3b Mon Sep 17 00:00:00 2001 From: Robin Dunn Date: Mon, 11 Jun 2007 21:59:01 +0000 Subject: [PATCH] more updates on recent changes git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/WX_2_8_BRANCH@46412 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- wxPython/docs/CHANGES.txt | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/wxPython/docs/CHANGES.txt b/wxPython/docs/CHANGES.txt index dc29152f51..23298d69d8 100644 --- a/wxPython/docs/CHANGES.txt +++ b/wxPython/docs/CHANGES.txt @@ -6,7 +6,7 @@ Recent Changes for wxPython * Added some SWIG magic that allows wx C++ lists to be exposed to -wxPython as sqequence-like wrappers around the real list, instead of +wxPython as sequence-like wrappers around the real list, instead of making a Python list that is a copy of the real list as was done before. These sequence-like objects support indexing, iteration and containment tests ("obj in seq") but not anything that would modify the @@ -18,6 +18,17 @@ wx.Menu.GetMenuItems. Care should be taken to be sure that you don't try to use the sequence after the C++ object the list belongs to has been destroyed. +Updated wrappers for the RichTextCtrl classes that were already +wrapped, and added support for loading rich xml files and saving as +HTML or XML. + +Added wxRoses sample from Ric Werme. + +Added better wrappers for wx.OutputStream and wxPython now deals with +them similarly to how it handles wx.InputStreams. Specifically, any +Python file-like object can be passed where a wx.OutputStream is +expected and the data will be written to the file object +appropriately.