From 2cfdfde3abc9fba8957da476af7acccc1fbc6c3e Mon Sep 17 00:00:00 2001 From: Mark Rose Date: Fri, 7 Mar 2003 10:36:33 +0000 Subject: [PATCH] minor tweak of SWIG_DIRECTORS git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk/SWIG@4450 626c5289-ae23-0410-ae9c-e8d60b6d4f22 --- CHANGES.current | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/CHANGES.current b/CHANGES.current index 542bf5e4e..527d2de0b 100644 --- a/CHANGES.current +++ b/CHANGES.current @@ -1,5 +1,18 @@ Version 1.3.18 (In progress) ============================ +03/07/2003: mrose (Mark Rose) + Added Examples/python/callback to demostrate how directors can + be used to implement callbacks in Python + Added Examples/python/extend to demonstrate virtual method + calls from C++ to Python (really the same as the callback + example, just a different context). + Added four tests for very basic director functionality. These + have runtime tests under python. + The Python module now emits #define SWIG_DIRECTORS near the + top of the output file if directors are enabled. This is useful + for disabling parts of tests in target languages that don't + support directors. + 03/06/2003: mrose (Mark Rose) Added a section to Doc/Manual/Python.html on cross language polymorphism (directors).