Correct changes notes on %pythonnondynamic usage

This commit is contained in:
William S Fulton 2015-04-10 20:34:01 +01:00
commit 3f549a2a5f

View file

@ -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.