Apply patch to cleanup whitespace from wsfulton
This commit is contained in:
parent
906564d97c
commit
0cc3c78abf
6 changed files with 14 additions and 16 deletions
|
|
@ -12,13 +12,13 @@ import_packages_subdirs = \
|
|||
relativeimport2 \
|
||||
relativeimport3 \
|
||||
split_modules \
|
||||
namespace_pkg
|
||||
namespace_pkg
|
||||
|
||||
|
||||
check: build
|
||||
if test "x$(SRCDIR)" != x; then \
|
||||
for file in `cd $(SRCDIR) && find . -type f -name "*.py"`; do \
|
||||
mkdir -p `dirname $$file`; \
|
||||
mkdir -p `dirname $$file`; \
|
||||
cp "${SRCDIR}$$file" "$$file" || exit 1; \
|
||||
done; \
|
||||
fi; \
|
||||
|
|
|
|||
|
|
@ -13,5 +13,3 @@ vanilla_split # python 1/2 in pkg1 C 1/2 in global namespace
|
|||
builtin # both halves in pkg1 (-builtin passed to swig)
|
||||
builtin # python 1/2 in pkg1 C 1/2 in global namespace (with -builtin)
|
||||
|
||||
All of the _nopy3 tests are the same as the above except swig will not
|
||||
use -py3 for python3.
|
||||
|
|
|
|||
|
|
@ -1,9 +1,9 @@
|
|||
%module(package="pkg1") foo
|
||||
%{
|
||||
static unsigned count(void)
|
||||
{
|
||||
return 3;
|
||||
}
|
||||
{
|
||||
return 3;
|
||||
}
|
||||
%}
|
||||
|
||||
unsigned count(void);
|
||||
|
|
|
|||
|
|
@ -1,9 +1,9 @@
|
|||
%module(package="pkg1") foo
|
||||
%{
|
||||
static unsigned count(void)
|
||||
{
|
||||
return 3;
|
||||
}
|
||||
{
|
||||
return 3;
|
||||
}
|
||||
%}
|
||||
|
||||
unsigned count(void);
|
||||
|
|
|
|||
|
|
@ -1,9 +1,9 @@
|
|||
%module(package="pkg1") foo
|
||||
%{
|
||||
static unsigned count(void)
|
||||
{
|
||||
return 3;
|
||||
}
|
||||
{
|
||||
return 3;
|
||||
}
|
||||
%}
|
||||
|
||||
unsigned count(void);
|
||||
|
|
|
|||
|
|
@ -1,9 +1,9 @@
|
|||
%module(package="pkg1") foo
|
||||
%{
|
||||
static unsigned count(void)
|
||||
{
|
||||
return 3;
|
||||
}
|
||||
{
|
||||
return 3;
|
||||
}
|
||||
%}
|
||||
|
||||
unsigned count(void);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue