summaryrefslogtreecommitdiff
path: root/CHANGES
diff options
context:
space:
mode:
authorWilliam S Fulton <wsf@fultondesigns.co.uk>2015-04-10 20:34:01 +0100
committerWilliam S Fulton <wsf@fultondesigns.co.uk>2015-04-10 20:34:01 +0100
commit3f549a2a5fabc32708299be8b5aaab750c49cff8 (patch)
tree4fe0ebde756c177fc0c0cfb422bfd5758ffa86f5 /CHANGES
parentfa4223e4969c4c98b50b8e9fdac486172f809384 (diff)
downloadswig-3f549a2a5fabc32708299be8b5aaab750c49cff8.tar.gz
Correct changes notes on %pythonnondynamic usage
Diffstat (limited to 'CHANGES')
-rw-r--r--CHANGES6
1 files changed, 3 insertions, 3 deletions
diff --git a/CHANGES b/CHANGES
index 8bea8c1c2..4b5e55a4c 100644
--- a/CHANGES
+++ b/CHANGES
@@ -10707,7 +10707,7 @@ Version 1.3.23 (November 11, 2004)
now if you have
- %pythonnondynamic(1) A;
+ %pythonnondynamic A;
struct A {
int a;
@@ -10725,11 +10725,11 @@ Version 1.3.23 (November 11, 2004)
Since this is a feature, you can use
- %pythonnondynamic(1);
+ %pythonnondynamic;
or
- %pythondynamic(0); [ Note: %pythondynamic since deprecated ]
+ %pythondynamic; [ Note: %pythondynamic since deprecated ]
to force all the wrapped classes to be "nondynamic" ones.