~ubuntu-branches/ubuntu/trusty/python-omniorb/trusty

« back to all changes in this revision

Viewing changes to examples/valuetype/tests/server.py

  • Committer: Bazaar Package Importer
  • Author(s): Floris Bruynooghe
  • Date: 2011-05-01 12:42:50 UTC
  • mfrom: (2.1.3 sid)
  • Revision ID: james.westby@ubuntu.com-20110501124250-zgkxrv9bqoy7bzm2
Tags: 3.5-2
* debian/omniidl-python.install: fix bug exposed by python2.5
  removal (thanks Jakub Wilk for patch) (closes: #624740)
* debian/control: bump standards version to 3.9.2, no changes needed.

Show diffs side-by-side

added added

removed removed

Lines of Context:
133
133
        else:
134
134
            print "op9: av is not bv"
135
135
 
 
136
    def op10(self, e):
 
137
        print "op10 e:", e
 
138
 
 
139
    def op11(self, e1, e2):
 
140
        print "op11 e1:", e1, id(e1)
 
141
        print "op11 e2:", e2, id(e2)
 
142
 
 
143
    def op12(self, c):
 
144
        print "op12 c :", c
 
145
        if c is not None:
 
146
            print "op12 e1:", c.e1, id(c.e1)
 
147
            print "op12 e2:", c.e2, id(c.e2)
136
148
 
137
149
 
138
150
def main(args):