File: inter.py

package info (click to toggle)
python-orbit 0.3.1-12
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 1,492 kB
  • ctags: 801
  • sloc: sh: 9,444; ansic: 5,642; python: 1,141; makefile: 126
file content (20 lines) | stat: -rwxr-xr-x 375 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!/usr/bin/python -i
# Pick up .so from the right place
import sys
sys.path.insert(0,"../src/")

try:
	import readline,rlcompleter
	readline.parse_and_bind("tab:complete")
except:
	pass


import CORBA, BasicTestIDL__POA, BasicTestIDL

class Foo(BasicTestIDL__POA.Foo):
	pass

orb = CORBA.ORB_init([],CORBA.ORB_ID)
#poa = orb.resolve_initial_references("RootPOA")
print dir()