swig/Examples/python/import_packages/split_modules
William S Fulton ff93f2e26e Skip Python subprocess calls in import_packages testcase on Windows
Getting these kind of errors on Appveyor which uses mingw/cygwin to run
a Python interpreter:

Native windows Python 3.6 running under cygwin and mingw Python 3.7 running under mingw:
  Fatal Python error: _Py_HashRandomization_Init: failed to get random
  numbers to initialize Python

Cygwin Python 2.7 running under cygwin:
  0 [main] python2.7 496 child_info_fork::abort: address space needed by '_foo.dll' (0x6D0000)
  is already occupied
2018-12-06 06:50:57 +00:00
..
vanilla Skip Python subprocess calls in import_packages testcase on Windows 2018-12-06 06:50:57 +00:00
vanilla_split Skip Python subprocess calls in import_packages testcase on Windows 2018-12-06 06:50:57 +00:00
Makefile Fix Makefile and skip testing python-2.4 for import_packages test 2018-01-05 20:17:08 +00:00
README Examples readme file tweak 2016-06-05 11:23:58 +01:00

  These examples/tests are for when the SWIG generated wrapper module is split
between two packages.  Specifically the pure python part is part of a package
and the C/C++ part is not in any package at all.  Historically SWIG has
supported this sort of thing.

vanilla        # "plane Jane" module both halves in pkg1
vanilla_split  # python 1/2 in pkg1 C 1/2 in global namespace