projects
/
invirt/packages/python-afs.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Cleanup the mess we make.
[invirt/packages/python-afs.git]
/
afs
/
_pts.pyx
1
cimport afs as a
2
3
cdef class PTS:
4
cdef a.ubik_client * client
5
6
def __cinit__(self):
7
cdef a.afs_int32 code
8
9
self.client = NULL
10
11
code = a.rx_Init(0)
12
if code != 0:
13
raise Exception(str(code))
14
15
def __dealloc__(self):
16
a.rx_Finalize()