summaryrefslogtreecommitdiff
path: root/Examples/test-suite/errors/swig_pythoncode_bad2.i
blob: f80f1be8602ba2d990992ece3921915b14f338e1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
%module xxx

%pythoncode %{
    def one():
        print "in one"
%}

%pythoncode %{
        print "still in one"

    def two():
        print "in two"
%}