Adding Mitogen plugin and strategy.
This commit is contained in:
+28
@@ -0,0 +1,28 @@
|
||||
"""
|
||||
I am a plain old module with no interesting dependencies or import machinery
|
||||
fiddlery.
|
||||
"""
|
||||
|
||||
import math
|
||||
|
||||
|
||||
class MyError(Exception):
|
||||
pass
|
||||
|
||||
|
||||
def get_sentinel_value():
|
||||
# Some proof we're even talking to the mitogen-test Docker image
|
||||
f = open('/etc/sentinel', 'rb')
|
||||
try:
|
||||
value = f.read().decode()
|
||||
finally:
|
||||
f.close()
|
||||
return value
|
||||
|
||||
|
||||
def add(x, y):
|
||||
return x + y
|
||||
|
||||
|
||||
def pow(x, y):
|
||||
return x ** y
|
||||
Reference in New Issue
Block a user