mirror of
https://github.com/thp/pyotherside.git
synced 2025-02-05 08:08:23 +08:00
16 lines
244 B
Python
16 lines
244 B
Python
#!/usr/bin/env python
|
|
# -*- coding: utf-8 -*-
|
|
|
|
import pyotherside
|
|
|
|
class Crasher:
|
|
def __init__(self):
|
|
pass
|
|
|
|
def __del__(self):
|
|
print('Finalizing', self)
|
|
|
|
def foo(arg):
|
|
print('Got arg:', arg)
|
|
return 'hello world'
|