@@ -27,7 +27,7 @@ Version 4.0.2 (8 Jun 2020)
27
27
[D] #1593 Replace broken imports when using newer versions of D.
28
28
29
29
2020-05-29: ZackerySpytz
30
- [Python] #1716 Performance improvements converting strings when using Python >= 3.3.
30
+ [Python] #1716 Performance improvements when converting strings when using Python >= 3.3.
31
31
32
32
2020-05-28: ZackerySpytz
33
33
#1776 Quite dramatically decrease run times when generating very large interface files by changing
@@ -74,8 +74,8 @@ Version 4.0.2 (8 Jun 2020)
74
74
[Ruby] #1651 Add std::auto_ptr<> typemaps.
75
75
76
76
2020-01-31: ZackerySpytz
77
- [Python] #1700 More robust error checking for failures in calls to Python C API:
78
- PyBytes_AsStringAndSize () and PyString_AsStringAndSize() .
77
+ [Python] #1700 The Python C API functions PyBytes_AsStringAndSize() and
78
+ PyString_AsStringAndSize () are now checked for failure .
79
79
80
80
2020-01-31: vadz
81
81
[Python] #1710 Fix crash parsing empty docstrings.
@@ -115,7 +115,7 @@ Version 4.0.2 (8 Jun 2020)
115
115
116
116
2020-01-13: wsfulton
117
117
[Python] #1595 Python -builtin constructors silently ignored keyword arguments.
118
- Instead of silenty ignoring them, now a "TypeError: f() takes no keyword arguments"
118
+ Instead of silently ignoring them, now a "TypeError: f() takes no keyword arguments"
119
119
exception is thrown if keyword arguments are used. Hence constructors and normal methods/
120
120
functions behave in the same way. Note, -keyword should be used with -builtin to obtain
121
121
keyword argument support.
@@ -200,7 +200,7 @@ Version 4.0.1 (21 Aug 2019)
200
200
VectorOverload(std::vector< Number,std::allocator< Number > >)
201
201
VectorOverload(std::vector< int,std::allocator< int > >)
202
202
203
- The problem was due to some error handling that was not cleared during typehecking .
203
+ The problem was due to some error handling that was not cleared during typechecking .
204
204
In this case an error was not cleared when the elements in the list failed the
205
205
typecheck for converting to X. Only occurs in Python 3+.
206
206
@@ -289,6 +289,7 @@ Version 4.0.1 (21 Aug 2019)
289
289
2019-05-22: ferdynator
290
290
[PHP] #1528 Don't add a closing '?>' PHP tag to generated files.
291
291
PSR-2 says it MUST be omitted for files containing only PHP.
292
+
292
293
Version 4.0.0 (27 Apr 2019)
293
294
===========================
294
295
@@ -3137,7 +3138,7 @@ Version 3.0.3 (30 Dec 2014)
3137
3138
3138
3139
2014-09-12: olly
3139
3140
[PHP] Add support for specifying any PHP interfaces a wrapped class
3140
- implements, e.g.: %typemap("phpinterfaces") MyIterator "Iterator";
3141
+ implements, e.g.: %typemap("phpinterfaces") MyIterator "Iterator"
3141
3142
3142
3143
2014-09-11: olly
3143
3144
[PHP] Fix throwing a PHP exception through C++ from a subclassed
@@ -3302,7 +3303,7 @@ Version 3.0.0 (16 Mar 2014)
3302
3303
project has been further extended. The C++11 support is comprehensive, but by no means complete
3303
3304
or without limitations. Full details for each new feature in C++11 is covered in the
3304
3305
CPlusPlus11.html chapter in the documentation which is included in SWIG and also available
3305
- online at http ://www.swig.org/Doc3.0/CPlusPlus11.html.
3306
+ online at https ://www.swig.org/Doc3.0/CPlusPlus11.html.
3306
3307
3307
3308
2014-03-14: v-for-vandal
3308
3309
[Lua] Numerous Lua improvements:
@@ -5784,7 +5785,7 @@ Version 2.0.0 (2 June 2010)
5784
5785
5785
5786
2010-02-27: wsfulton
5786
5787
License code changes: SWIG Source is GPL-v3 and library code license is now clearer
5787
- and is provided under a very permissive license. See http ://www.swig.org/legal.html.
5788
+ and is provided under a very permissive license. See https ://www.swig.org/legal.html.
5788
5789
5789
5790
2010-02-13: wsfulton
5790
5791
[Ruby] A few fixes for compiling under ruby-1.9.x including patch from 'Nibble'.
@@ -8396,8 +8397,8 @@ Version 1.3.30 (November 13, 2006)
8396
8397
javabase/csbase typemap, eg in the following, 'Me' will be the base class,
8397
8398
no matter what Foo is really derived from in the C++ layer.
8398
8399
8399
- %typemap(javabase, replace="1") Foo "Me";
8400
- %typemap(csbase, replace="1") Foo "Me";
8400
+ %typemap(javabase, replace="1") Foo "Me"
8401
+ %typemap(csbase, replace="1") Foo "Me"
8401
8402
8402
8403
Previously it was not possible for the javabase/csbase typemaps to override the C++ base.
8403
8404
@@ -9884,7 +9885,7 @@ Version 1.3.28 (February 12, 2006)
9884
9885
solutions is to write:
9885
9886
9886
9887
%typemap(in) A * {...}
9887
- %typemap(freeag) A * "";
9888
+ %typemap(freeag) A * ""
9888
9889
9889
9890
overload 'freearg' with an empty definition.
9890
9891
@@ -11314,20 +11315,20 @@ Version 1.3.27 (October 15, 2005)
11314
11315
then the typemap will be inserted without the block
11315
11316
imposed by the brackets, similar to
11316
11317
11317
- %typemap(in) Hello "...";
11318
+ %typemap(in) Hello "..."
11318
11319
11319
11320
So, why you don't just use the quote style?, because:
11320
11321
11321
11322
1.- The quote style doesn't get preprocessed, for example
11322
11323
11323
- %typemap(in) Hello "$1= SWIG_macro($1);";
11324
+ %typemap(in) Hello "$1= SWIG_macro($1);"
11324
11325
11325
11326
here, SWIG_macro doesn't get expanded
11326
11327
11327
11328
2.- Inside a quote typemap, you have to use
11328
11329
quotes carefully
11329
11330
11330
- %typemap(in) Hello "$1 = \"hello\" ";
11331
+ %typemap(in) Hello "$1 = \"hello\" "
11331
11332
11332
11333
3.- You can't make emacs and/or other editors
11333
11334
to indent inside a string!.
@@ -11529,7 +11530,7 @@ Version 1.3.26 (October 9, 2005)
11529
11530
11530
11531
%define hello(name, Type)
11531
11532
%define name ## a(Type)
11532
- %typemap(in) Type "hello;";
11533
+ %typemap(in) Type "hello;"
11533
11534
%enddef
11534
11535
%enddef
11535
11536
@@ -13525,7 +13526,7 @@ Version 1.3.23 (November 11, 2004)
13525
13526
whereupon the default of 0 was used. You can get the same behaviour for C
13526
13527
code by using the "default" typemap:
13527
13528
13528
- %typemap(default) int val "$1 = 0;";
13529
+ %typemap(default) int val "$1 = 0;"
13529
13530
%{
13530
13531
void foo(int val);
13531
13532
%}
@@ -13854,9 +13855,11 @@ Version 1.3.22 (September 4, 2004)
13854
13855
specifiers from the C type. This makes it possible, for instance, to control
13855
13856
whether a C "char" argument takes a Lisp character or a Lisp integer value.
13856
13857
The default (taking Lisp characters) is done by these built-in typemaps:
13857
- %typemap(ffitype) char ":char"; %typemap(lisptype) char "character";
13858
+ %typemap(ffitype) char ":char"
13859
+ %typemap(lisptype) char "character"
13858
13860
If char means an integer instead, use these typemaps:
13859
- %typemap(ffitype) char ":char"; %typemap(lisptype) char "integer";
13861
+ %typemap(ffitype) char ":char"
13862
+ %typemap(lisptype) char "integer"
13860
13863
13861
13864
08/22/2004: wsfulton
13862
13865
As discussed in bug #772453, the SWIG library directory is now installed
@@ -18874,9 +18877,9 @@ Version 1.3.14 (August 12, 2002)
18874
18877
shadowinterface
18875
18878
18876
18879
Note that it is possible to target a particular proxy class:
18877
- %typemap(javaimports) Foo "import java.util.*";
18880
+ %typemap(javaimports) Foo "import java.util.*"
18878
18881
or a particular type wrapper class:
18879
- %typemap(javaimports) double* "import java.math.*";
18882
+ %typemap(javaimports) double* "import java.math.*"
18880
18883
Note that $javaclassname in these typemaps are substituted with either the proxy
18881
18884
classname when using proxy classes or the SWIGTYPE class name.
18882
18885
@@ -19614,8 +19617,8 @@ Version 1.3.12 (June 2, 2002)
19614
19617
typemap must exactly match up with the "in" or "ignore"
19615
19618
typemap. For example:
19616
19619
19617
- %typemap(in) (char *data, int len) { ... };
19618
- %typemap(freearg) char *data { ... };
19620
+ %typemap(in) (char *data, int len) { ... }
19621
+ %typemap(freearg) char *data { ... }
19619
19622
19620
19623
void foo(char *data, int len);
19621
19624
@@ -21071,15 +21074,15 @@ Version 1.3.11 (January 31, 2002)
21071
21074
21072
21075
Second, a typemap can force a no-match by defining
21073
21076
21074
- %typemap(in) sometype "pass";
21077
+ %typemap(in) sometype "pass"
21075
21078
21076
21079
If this is used, the typemap system will *not* record a
21077
21080
typemap match for "sometype". This can be used to block
21078
21081
selected typemaps. For example, if you wanted to disable
21079
21082
a typemap feature for some type, you could do this.
21080
21083
21081
21084
// Do not allow global variables of type 'const char *' to be set.
21082
- %typemap(varin) const char * "pass";
21085
+ %typemap(varin) const char * "pass"
21083
21086
21084
21087
It might also be possible to use this to do subtle and
21085
21088
strange things with typemaps. For example, if you wanted to
@@ -21093,8 +21096,8 @@ Version 1.3.11 (January 31, 2002)
21093
21096
... return a value ...
21094
21097
}
21095
21098
/* Block unqualified typemaps defined above */
21096
- %typemap(ignore) const blah * "pass";
21097
- %typemap(argout) const blah * "pass";
21099
+ %typemap(ignore) const blah * "pass"
21100
+ %typemap(argout) const blah * "pass"
21098
21101
%typemap(in) const blah * {
21099
21102
... get input value ...
21100
21103
}
@@ -21871,7 +21874,7 @@ Version 1.3.10 (December 10, 2001)
21871
21874
%typemap directive can now accept nearly arbitrary keyword parameters.
21872
21875
For example:
21873
21876
21874
- %typemap(in,parse="i",doc="integer") int "...";
21877
+ %typemap(in,parse="i",doc="integer") int "..."
21875
21878
21876
21879
The purpose of the keyword parameters is to supply code generation
21877
21880
hints to the target language module. The intepretation of the
@@ -23949,7 +23952,7 @@ Version 1.3 Alpha 4 (September 4, 2000)
23949
23952
Typemaps can now be specified using string literals like
23950
23953
this:
23951
23954
23952
- %typemap(in) int "$target = SvIV($source);";
23955
+ %typemap(in) int "$target = SvIV($source);"
23953
23956
23954
23957
When code is specified like this, it is *NOT* enclosed
23955
23958
inside a local scope (as with older typemap declarations).
0 commit comments