<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/swig.git/Examples/python/simple, branch master</title>
<subtitle>github.com: swig/swig.git
</subtitle>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/swig.git/'/>
<entry>
<title>Modify examples to be both Python 2 and 3 compatible</title>
<updated>2020-08-15T15:46:01+00:00</updated>
<author>
<name>William S Fulton</name>
<email>wsf@fultondesigns.co.uk</email>
</author>
<published>2020-08-15T15:46:01+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/swig.git/commit/?id=89bee6a7fa2236da8f10bf200abdc4892d4085b8'/>
<id>89bee6a7fa2236da8f10bf200abdc4892d4085b8</id>
<content type='text'>
For removing dependency on 2to3
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
For removing dependency on 2to3
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix some typos in docs and examples and make the code look nicer.</title>
<updated>2016-12-31T15:06:56+00:00</updated>
<author>
<name>sunoru</name>
<email>sunoru@live.com</email>
</author>
<published>2016-12-31T15:06:56+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/swig.git/commit/?id=8985c34809f21272b774cbdf7a0af5a526db72db'/>
<id>8985c34809f21272b774cbdf7a0af5a526db72db</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Remove use of preinst-swig script</title>
<updated>2015-08-21T21:43:17+00:00</updated>
<author>
<name>William S Fulton</name>
<email>wsf@fultondesigns.co.uk</email>
</author>
<published>2015-08-20T05:16:01+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/swig.git/commit/?id=8e2bc595c67b57a2bd58661b08dc2d7585090e37'/>
<id>8e2bc595c67b57a2bd58661b08dc2d7585090e37</id>
<content type='text'>
Complete the prototype removal in ca1431.

The script prevents SWIGTOOL=gdb from working as gdb can't be used to
debug a shell script, it requires a binary.

Add support for SWIGTOOL in all the examples.

SWIG_LIB_DIR and SWIGEXE must now instead be set by all Makefiles.

See issue #473.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Complete the prototype removal in ca1431.

The script prevents SWIGTOOL=gdb from working as gdb can't be used to
debug a shell script, it requires a binary.

Add support for SWIGTOOL in all the examples.

SWIG_LIB_DIR and SWIGEXE must now instead be set by all Makefiles.

See issue #473.
</pre>
</div>
</content>
</entry>
<entry>
<title>autopep8 cleanup of Examples/python whitespace</title>
<updated>2015-05-08T12:46:06+00:00</updated>
<author>
<name>Jon Schlueter</name>
<email>jon.schlueter@gmail.com</email>
</author>
<published>2015-05-08T12:33:29+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/swig.git/commit/?id=77707154574f1852f56ed552bab832249c80bbfc'/>
<id>77707154574f1852f56ed552bab832249c80bbfc</id>
<content type='text'>
automated cleanup only of the Examples/python example code
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
automated cleanup only of the Examples/python example code
</pre>
</div>
</content>
</entry>
<entry>
<title>Allow examples and test-suite to be built out of source tree</title>
<updated>2014-05-11T21:21:10+00:00</updated>
<author>
<name>Karl Wette</name>
<email>karl.wette@ligo.org</email>
</author>
<published>2014-05-11T21:21:10+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/swig.git/commit/?id=f574a34155e4ede49b1b023494e0a1637ab89f8f'/>
<id>f574a34155e4ede49b1b023494e0a1637ab89f8f</id>
<content type='text'>
- Examples/Makefile.in rules use SRCDIR as the relative source directory

- ./config.status replicates Examples/ source directory tree in build
  directory, and copies each Makefile to build directory, prefixed with
  a header which sets SRCDIR to source directory

- Examples/test-suite/.../Makefile.in set SRCDIR from Autoconf-set srcdir

- Examples/test-suite/errors/Makefile.in needs to filter out source
  directory from SWIG error messages

- Lua: embedded interpreters are passed location of run-time test

- Python: copy run-time scripts to build directory because of 2to3
  conversion; import_packages example copies __init__.py from source
  directory; test-suite sets SCRIPTDIR to location of run-time tests

- Javascript: binding.gyp renamed to binding.gyp.in so that $srcdir
  can be substituted with SRCDIR; removed './' from require() statements
  so that NODE_PATH can be used to point Node.js to build directory
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
- Examples/Makefile.in rules use SRCDIR as the relative source directory

- ./config.status replicates Examples/ source directory tree in build
  directory, and copies each Makefile to build directory, prefixed with
  a header which sets SRCDIR to source directory

- Examples/test-suite/.../Makefile.in set SRCDIR from Autoconf-set srcdir

- Examples/test-suite/errors/Makefile.in needs to filter out source
  directory from SWIG error messages

- Lua: embedded interpreters are passed location of run-time test

- Python: copy run-time scripts to build directory because of 2to3
  conversion; import_packages example copies __init__.py from source
  directory; test-suite sets SCRIPTDIR to location of run-time tests

- Javascript: binding.gyp renamed to binding.gyp.in so that $srcdir
  can be substituted with SRCDIR; removed './' from require() statements
  so that NODE_PATH can be used to point Node.js to build directory
</pre>
</div>
</content>
</entry>
<entry>
<title>Use a less confusing macro name, SWIG_PYTHON_NO_DEBUG =&gt; SWIG_PYTHON_INTERPRETER_NO_DEBUG</title>
<updated>2013-06-11T18:15:57+00:00</updated>
<author>
<name>William S Fulton</name>
<email>wsf@fultondesigns.co.uk</email>
</author>
<published>2013-06-11T18:15:57+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/swig.git/commit/?id=7f95c7bb3efe0f282833a71b50818cf46d80cc1a'/>
<id>7f95c7bb3efe0f282833a71b50818cf46d80cc1a</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Add SWIG_PYTHON_NO_DEBUG macro for building Debug wrappers against the Python Debug dll</title>
<updated>2013-06-11T07:22:21+00:00</updated>
<author>
<name>William S Fulton</name>
<email>wsf@fultondesigns.co.uk</email>
</author>
<published>2013-06-11T07:22:21+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/swig.git/commit/?id=5cdfc503e18e1f5b8895516c591332fda371d879'/>
<id>5cdfc503e18e1f5b8895516c591332fda371d879</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Python examples makefiles clean target fixed and use RUNPIPE and tidyup</title>
<updated>2013-04-19T21:47:26+00:00</updated>
<author>
<name>William S Fulton</name>
<email>wsf@fultondesigns.co.uk</email>
</author>
<published>2013-04-13T20:44:04+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/swig.git/commit/?id=cc4ac0a9e93104ee435b50b9532dc1ca1a84bf03'/>
<id>cc4ac0a9e93104ee435b50b9532dc1ca1a84bf03</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix Visual Studio examples to work when SWIG is unzipped into a directory containing spaces.</title>
<updated>2013-01-15T07:18:20+00:00</updated>
<author>
<name>William S Fulton</name>
<email>wsf@fultondesigns.co.uk</email>
</author>
<published>2013-01-15T07:18:20+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/swig.git/commit/?id=78cd350fe98581d1353425eb9898a1e0a1d5ef6e'/>
<id>78cd350fe98581d1353425eb9898a1e0a1d5ef6e</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>invoke using swig.exe instead of just swig in Visual Studio project files</title>
<updated>2009-03-20T23:54:43+00:00</updated>
<author>
<name>William S Fulton</name>
<email>wsf@fultondesigns.co.uk</email>
</author>
<published>2009-03-20T23:54:43+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/swig.git/commit/?id=48203afbd0bac33a0ce8176d681ad33ff5c50217'/>
<id>48203afbd0bac33a0ce8176d681ad33ff5c50217</id>
<content type='text'>
git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@11166 626c5289-ae23-0410-ae9c-e8d60b6d4f22
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@11166 626c5289-ae23-0410-ae9c-e8d60b6d4f22
</pre>
</div>
</content>
</entry>
</feed>
