mailr7753 - /branches/multi_processor_merge/multi/processor.py


Others Months | Index by Date | Thread Index
>>   [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Header


Content

Posted by edward on October 16, 2008 - 16:39:
Author: bugman
Date: Thu Oct 16 16:39:36 2008
New Revision: 7753

URL: http://svn.gna.org/viewcvs/relax?rev=7753&view=rev
Log:
Spelling fix for a function name.


Modified:
    branches/multi_processor_merge/multi/processor.py

Modified: branches/multi_processor_merge/multi/processor.py
URL: 
http://svn.gna.org/viewcvs/relax/branches/multi_processor_merge/multi/processor.py?rev=7753&r1=7752&r2=7753&view=diff
==============================================================================
--- branches/multi_processor_merge/multi/processor.py (original)
+++ branches/multi_processor_merge/multi/processor.py Thu Oct 16 16:39:36 2008
@@ -207,12 +207,12 @@
 
 #requires 2.4 decorators@abstract
 #def abstract(f):
-#    raise_unimplimented(f)
+#    raise_unimplemented(f)
 
 #    return f
 
 
-def raise_unimplimented(method):
+def raise_unimplemented(method):
     '''Standard function for raising NotImplementedError for unimplemented 
abstract methods.
 
     @todo:  For python versions >= 2.4 it is possible to use annotations and 
meta classes to provide
@@ -512,7 +512,7 @@
         @type memo:     Memo subclass instance
         '''
 
-        raise_unimplimented(self.add_to_queue)
+        raise_unimplemented(self.add_to_queue)
 
 
     def capture_stdio(self, stdio_capture=None):
@@ -536,7 +536,7 @@
 
     # FIXME is this used?
 #    def exit(self):
-#        raise_unimplimented(self.exit)
+#        raise_unimplemented(self.exit)
 
 
     def get_intro_string(self):
@@ -553,7 +553,7 @@
         @rtype:     str
         '''
 
-        raise_unimplimented(self.get_intro_string)
+        raise_unimplemented(self.get_intro_string)
 
 
     def get_name(self):
@@ -568,7 +568,7 @@
         @rtype:     str
         '''
 
-        raise_unimplimented(self.get_name)
+        raise_unimplemented(self.get_name)
 
 
     def get_stdio_capture(self):
@@ -675,7 +675,7 @@
         @rtype:     int
         '''
 
-        raise_unimplimented(self.rank)
+        raise_unimplemented(self.rank)
 
 
     def rank_format_string(self):
@@ -724,7 +724,7 @@
         @see:   multi.processor.Resulf_command.
         '''
 
-        raise_unimplimented(self.return_object)
+        raise_unimplemented(self.return_object)
 
 
     def run(self):
@@ -737,7 +737,7 @@
         @see:   multi.processor.Application_callback.
         '''
 
-        raise_unimplimented(self.run)
+        raise_unimplemented(self.run)
 
 
     def run_command_globally(self, command):
@@ -760,7 +760,7 @@
         thread to block until the command has completed.
         '''
 
-        raise_unimplimented(self.run_queue)
+        raise_unimplemented(self.run_queue)
 
 
     # fixme: is an argument of the form stio_capture needed




Related Messages


Powered by MHonArc, Updated Thu Oct 16 17:00:02 2008