aboutsummaryrefslogtreecommitdiff
path: root/bestflags/task.py
diff options
context:
space:
mode:
Diffstat (limited to 'bestflags/task.py')
-rw-r--r--bestflags/task.py16
1 files changed, 8 insertions, 8 deletions
diff --git a/bestflags/task.py b/bestflags/task.py
index f5908fdb..687a8293 100644
--- a/bestflags/task.py
+++ b/bestflags/task.py
@@ -27,7 +27,7 @@ class Task(object):
"""
self._flag_set = flag_set
- def reproduce_with(self, other):
+ def ReproduceWith(self, other):
"""Create a new SolutionCandidate by reproduction with another.
Mix two Tasks together to form a new Task of the same class. This is one of
@@ -40,7 +40,7 @@ class Task(object):
"""
pass
- def compile(self):
+ def Compile(self):
"""Run a compile.
This method compile an image using the present flags, get the image,
@@ -49,20 +49,20 @@ class Task(object):
"""
pass
- def get_flags(self):
+ def GetFlags(self):
pass
- def set_flags(self, flags):
+ def SetFlags(self, flags):
pass
- def get_checksum(self):
+ def GetChecksum(self):
pass
- def set_checksum(self, checksum):
+ def SetChecksum(self, checksum):
pass
- def get_image(self):
+ def GetImage(self):
pass
- def set_image(self, image):
+ def SetImage(self, image):
pass