Skip to content

Commit

Permalink
Merge pull request #35 from jim-easterbrook/devel
Browse files Browse the repository at this point in the history
Devel
  • Loading branch information
jim-easterbrook authored Feb 24, 2024
2 parents 0c4034a + b1e041d commit 52f9ca2
Show file tree
Hide file tree
Showing 91 changed files with 880 additions and 520 deletions.
2 changes: 1 addition & 1 deletion src/swig-0_27_3/basicio.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# This file was automatically generated by SWIG (https://www.swig.org).
# Version 4.2.0
# Version 4.2.1
#
# Do not make changes to this file unless you know what you are doing - modify
# the SWIG interface file instead.
Expand Down
26 changes: 17 additions & 9 deletions src/swig-0_27_3/basicio_wrap.cxx
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
/* ----------------------------------------------------------------------------
* This file was automatically generated by SWIG (https://www.swig.org).
* Version 4.2.0
* Version 4.2.1
*
* Do not make changes to this file unless you know what you are doing - modify
* the SWIG interface file instead.
* ----------------------------------------------------------------------------- */


#define SWIG_VERSION 0x040200
#define SWIG_VERSION 0x040201
#define SWIGPYTHON
#define SWIG_PYTHON_THREADS
#define SWIG_PYTHON_DIRECTOR_NO_VTABLE
Expand Down Expand Up @@ -138,12 +138,17 @@
# pragma warning disable 592
#endif

#if __cplusplus >=201103L
#if defined(__cplusplus) && __cplusplus >=201103L
# define SWIG_NULLPTR nullptr
#else
# define SWIG_NULLPTR NULL
#endif

/* -----------------------------------------------------------------------------
* swigcompat.swg
*
* Macros to provide support compatibility with older C and C++ standards.
* ----------------------------------------------------------------------------- */

/* C99 and C++11 should provide snprintf, but define SWIG_NO_SNPRINTF
* if you're missing it.
Expand All @@ -164,7 +169,6 @@
#endif



#if defined(__GNUC__) && defined(_WIN32) && !defined(SWIG_PYTHON_NO_HYPOT_WORKAROUND)
/* Workaround for '::hypot' has not been declared', see https://bugs.python.org/issue11566 */
# include <math.h>
Expand Down Expand Up @@ -3686,8 +3690,10 @@ SwigPyBuiltin_ternaryfunc_closure(SwigPyWrapperFunction wrapper, PyObject *a, Py
assert(tuple);
Py_INCREF(b);
PyTuple_SET_ITEM(tuple, 0, b);
Py_INCREF(c);
PyTuple_SET_ITEM(tuple, 1, c);
if (c) {
Py_INCREF(c);
PyTuple_SET_ITEM(tuple, 1, c);
}
result = wrapper(a, tuple);
Py_DECREF(tuple);
return result;
Expand Down Expand Up @@ -3802,8 +3808,10 @@ SwigPyBuiltin_ssizeobjargproc_closure(SwigPyWrapperFunction wrapper, PyObject *a
tuple = PyTuple_New(2);
assert(tuple);
PyTuple_SET_ITEM(tuple, 0, _PyLong_FromSsize_t(b));
Py_INCREF(c);
PyTuple_SET_ITEM(tuple, 1, c);
if (c) {
Py_INCREF(c);
PyTuple_SET_ITEM(tuple, 1, c);
}
resultobj = wrapper(a, tuple);
result = resultobj ? 0 : -1;
Py_XDECREF(resultobj);
Expand Down Expand Up @@ -4244,7 +4252,7 @@ static void _set_python_exception() {



/*@SWIG:/usr/local/share/swig/4.2.0/typemaps/exception.swg,59,SWIG_CATCH_STDEXCEPT@*/ /* catching std::exception */
/*@SWIG:/usr/local/share/swig/4.2.1/typemaps/exception.swg,59,SWIG_CATCH_STDEXCEPT@*/ /* catching std::exception */
catch (std::invalid_argument& e) {
SWIG_exception_fail(SWIG_ValueError, e.what() );
} catch (std::domain_error& e) {
Expand Down
2 changes: 1 addition & 1 deletion src/swig-0_27_3/datasets.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# This file was automatically generated by SWIG (https://www.swig.org).
# Version 4.2.0
# Version 4.2.1
#
# Do not make changes to this file unless you know what you are doing - modify
# the SWIG interface file instead.
Expand Down
26 changes: 17 additions & 9 deletions src/swig-0_27_3/datasets_wrap.cxx
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
/* ----------------------------------------------------------------------------
* This file was automatically generated by SWIG (https://www.swig.org).
* Version 4.2.0
* Version 4.2.1
*
* Do not make changes to this file unless you know what you are doing - modify
* the SWIG interface file instead.
* ----------------------------------------------------------------------------- */


#define SWIG_VERSION 0x040200
#define SWIG_VERSION 0x040201
#define SWIGPYTHON
#define SWIG_PYTHON_DIRECTOR_NO_VTABLE
#define SWIGPYTHON_BUILTIN
Expand Down Expand Up @@ -137,12 +137,17 @@
# pragma warning disable 592
#endif

#if __cplusplus >=201103L
#if defined(__cplusplus) && __cplusplus >=201103L
# define SWIG_NULLPTR nullptr
#else
# define SWIG_NULLPTR NULL
#endif

/* -----------------------------------------------------------------------------
* swigcompat.swg
*
* Macros to provide support compatibility with older C and C++ standards.
* ----------------------------------------------------------------------------- */

/* C99 and C++11 should provide snprintf, but define SWIG_NO_SNPRINTF
* if you're missing it.
Expand All @@ -163,7 +168,6 @@
#endif



#if defined(__GNUC__) && defined(_WIN32) && !defined(SWIG_PYTHON_NO_HYPOT_WORKAROUND)
/* Workaround for '::hypot' has not been declared', see https://bugs.python.org/issue11566 */
# include <math.h>
Expand Down Expand Up @@ -3685,8 +3689,10 @@ SwigPyBuiltin_ternaryfunc_closure(SwigPyWrapperFunction wrapper, PyObject *a, Py
assert(tuple);
Py_INCREF(b);
PyTuple_SET_ITEM(tuple, 0, b);
Py_INCREF(c);
PyTuple_SET_ITEM(tuple, 1, c);
if (c) {
Py_INCREF(c);
PyTuple_SET_ITEM(tuple, 1, c);
}
result = wrapper(a, tuple);
Py_DECREF(tuple);
return result;
Expand Down Expand Up @@ -3801,8 +3807,10 @@ SwigPyBuiltin_ssizeobjargproc_closure(SwigPyWrapperFunction wrapper, PyObject *a
tuple = PyTuple_New(2);
assert(tuple);
PyTuple_SET_ITEM(tuple, 0, _PyLong_FromSsize_t(b));
Py_INCREF(c);
PyTuple_SET_ITEM(tuple, 1, c);
if (c) {
Py_INCREF(c);
PyTuple_SET_ITEM(tuple, 1, c);
}
resultobj = wrapper(a, tuple);
result = resultobj ? 0 : -1;
Py_XDECREF(resultobj);
Expand Down Expand Up @@ -4267,7 +4275,7 @@ static void _set_python_exception() {



/*@SWIG:/usr/local/share/swig/4.2.0/typemaps/exception.swg,59,SWIG_CATCH_STDEXCEPT@*/ /* catching std::exception */
/*@SWIG:/usr/local/share/swig/4.2.1/typemaps/exception.swg,59,SWIG_CATCH_STDEXCEPT@*/ /* catching std::exception */
catch (std::invalid_argument& e) {
SWIG_exception_fail(SWIG_ValueError, e.what() );
} catch (std::domain_error& e) {
Expand Down
2 changes: 1 addition & 1 deletion src/swig-0_27_3/easyaccess.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# This file was automatically generated by SWIG (https://www.swig.org).
# Version 4.2.0
# Version 4.2.1
#
# Do not make changes to this file unless you know what you are doing - modify
# the SWIG interface file instead.
Expand Down
26 changes: 17 additions & 9 deletions src/swig-0_27_3/easyaccess_wrap.cxx
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
/* ----------------------------------------------------------------------------
* This file was automatically generated by SWIG (https://www.swig.org).
* Version 4.2.0
* Version 4.2.1
*
* Do not make changes to this file unless you know what you are doing - modify
* the SWIG interface file instead.
* ----------------------------------------------------------------------------- */


#define SWIG_VERSION 0x040200
#define SWIG_VERSION 0x040201
#define SWIGPYTHON
#define SWIG_PYTHON_DIRECTOR_NO_VTABLE
#define SWIGPYTHON_BUILTIN
Expand Down Expand Up @@ -137,12 +137,17 @@
# pragma warning disable 592
#endif

#if __cplusplus >=201103L
#if defined(__cplusplus) && __cplusplus >=201103L
# define SWIG_NULLPTR nullptr
#else
# define SWIG_NULLPTR NULL
#endif

/* -----------------------------------------------------------------------------
* swigcompat.swg
*
* Macros to provide support compatibility with older C and C++ standards.
* ----------------------------------------------------------------------------- */

/* C99 and C++11 should provide snprintf, but define SWIG_NO_SNPRINTF
* if you're missing it.
Expand All @@ -163,7 +168,6 @@
#endif



#if defined(__GNUC__) && defined(_WIN32) && !defined(SWIG_PYTHON_NO_HYPOT_WORKAROUND)
/* Workaround for '::hypot' has not been declared', see https://bugs.python.org/issue11566 */
# include <math.h>
Expand Down Expand Up @@ -3685,8 +3689,10 @@ SwigPyBuiltin_ternaryfunc_closure(SwigPyWrapperFunction wrapper, PyObject *a, Py
assert(tuple);
Py_INCREF(b);
PyTuple_SET_ITEM(tuple, 0, b);
Py_INCREF(c);
PyTuple_SET_ITEM(tuple, 1, c);
if (c) {
Py_INCREF(c);
PyTuple_SET_ITEM(tuple, 1, c);
}
result = wrapper(a, tuple);
Py_DECREF(tuple);
return result;
Expand Down Expand Up @@ -3801,8 +3807,10 @@ SwigPyBuiltin_ssizeobjargproc_closure(SwigPyWrapperFunction wrapper, PyObject *a
tuple = PyTuple_New(2);
assert(tuple);
PyTuple_SET_ITEM(tuple, 0, _PyLong_FromSsize_t(b));
Py_INCREF(c);
PyTuple_SET_ITEM(tuple, 1, c);
if (c) {
Py_INCREF(c);
PyTuple_SET_ITEM(tuple, 1, c);
}
resultobj = wrapper(a, tuple);
result = resultobj ? 0 : -1;
Py_XDECREF(resultobj);
Expand Down Expand Up @@ -4223,7 +4231,7 @@ static void _set_python_exception() {



/*@SWIG:/usr/local/share/swig/4.2.0/typemaps/exception.swg,59,SWIG_CATCH_STDEXCEPT@*/ /* catching std::exception */
/*@SWIG:/usr/local/share/swig/4.2.1/typemaps/exception.swg,59,SWIG_CATCH_STDEXCEPT@*/ /* catching std::exception */
catch (std::invalid_argument& e) {
SWIG_exception_fail(SWIG_ValueError, e.what() );
} catch (std::domain_error& e) {
Expand Down
2 changes: 1 addition & 1 deletion src/swig-0_27_3/error.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# This file was automatically generated by SWIG (https://www.swig.org).
# Version 4.2.0
# Version 4.2.1
#
# Do not make changes to this file unless you know what you are doing - modify
# the SWIG interface file instead.
Expand Down
24 changes: 16 additions & 8 deletions src/swig-0_27_3/error_wrap.cxx
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
/* ----------------------------------------------------------------------------
* This file was automatically generated by SWIG (https://www.swig.org).
* Version 4.2.0
* Version 4.2.1
*
* Do not make changes to this file unless you know what you are doing - modify
* the SWIG interface file instead.
* ----------------------------------------------------------------------------- */


#define SWIG_VERSION 0x040200
#define SWIG_VERSION 0x040201
#define SWIGPYTHON
#define SWIG_PYTHON_DIRECTOR_NO_VTABLE
#define SWIGPYTHON_BUILTIN
Expand Down Expand Up @@ -137,12 +137,17 @@
# pragma warning disable 592
#endif

#if __cplusplus >=201103L
#if defined(__cplusplus) && __cplusplus >=201103L
# define SWIG_NULLPTR nullptr
#else
# define SWIG_NULLPTR NULL
#endif

/* -----------------------------------------------------------------------------
* swigcompat.swg
*
* Macros to provide support compatibility with older C and C++ standards.
* ----------------------------------------------------------------------------- */

/* C99 and C++11 should provide snprintf, but define SWIG_NO_SNPRINTF
* if you're missing it.
Expand All @@ -163,7 +168,6 @@
#endif



#if defined(__GNUC__) && defined(_WIN32) && !defined(SWIG_PYTHON_NO_HYPOT_WORKAROUND)
/* Workaround for '::hypot' has not been declared', see https://bugs.python.org/issue11566 */
# include <math.h>
Expand Down Expand Up @@ -3685,8 +3689,10 @@ SwigPyBuiltin_ternaryfunc_closure(SwigPyWrapperFunction wrapper, PyObject *a, Py
assert(tuple);
Py_INCREF(b);
PyTuple_SET_ITEM(tuple, 0, b);
Py_INCREF(c);
PyTuple_SET_ITEM(tuple, 1, c);
if (c) {
Py_INCREF(c);
PyTuple_SET_ITEM(tuple, 1, c);
}
result = wrapper(a, tuple);
Py_DECREF(tuple);
return result;
Expand Down Expand Up @@ -3801,8 +3807,10 @@ SwigPyBuiltin_ssizeobjargproc_closure(SwigPyWrapperFunction wrapper, PyObject *a
tuple = PyTuple_New(2);
assert(tuple);
PyTuple_SET_ITEM(tuple, 0, _PyLong_FromSsize_t(b));
Py_INCREF(c);
PyTuple_SET_ITEM(tuple, 1, c);
if (c) {
Py_INCREF(c);
PyTuple_SET_ITEM(tuple, 1, c);
}
resultobj = wrapper(a, tuple);
result = resultobj ? 0 : -1;
Py_XDECREF(resultobj);
Expand Down
2 changes: 1 addition & 1 deletion src/swig-0_27_3/exif.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# This file was automatically generated by SWIG (https://www.swig.org).
# Version 4.2.0
# Version 4.2.1
#
# Do not make changes to this file unless you know what you are doing - modify
# the SWIG interface file instead.
Expand Down
Loading

0 comments on commit 52f9ca2

Please sign in to comment.