You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@gump.apache.org by ma...@apache.org on 2020/11/27 16:56:57 UTC

svn commit: r1883869 - /gump/live/python/gump/core/run/gumprun.py

Author: markt
Date: Fri Nov 27 16:56:56 2020
New Revision: 1883869

URL: http://svn.apache.org/viewvc?rev=1883869&view=rev
Log:
Tabs to 4 spaces

Modified:
    gump/live/python/gump/core/run/gumprun.py

Modified: gump/live/python/gump/core/run/gumprun.py
URL: http://svn.apache.org/viewvc/gump/live/python/gump/core/run/gumprun.py?rev=1883869&r1=1883868&r2=1883869&view=diff
==============================================================================
--- gump/live/python/gump/core/run/gumprun.py (original)
+++ gump/live/python/gump/core/run/gumprun.py Fri Nov 27 16:56:56 2020
@@ -176,10 +176,10 @@ class GumpRun(gump.util.timing.Timeable,
             self.log.debug('Registered Actor : ' + `actor`)    
             
         
-    def _dispatchEvent(self,event):    	
-    	"""
-    		Perform the dispatch
-    	"""
+    def _dispatchEvent(self,event):        
+        """
+            Perform the dispatch
+        """
         self.log.debug('Dispatch Event : ' + `event`)        
         for actor in self.actors:
             #self.log.debug('Dispatch Event : ' + `event` + ' to ' + `actor`)     
@@ -187,9 +187,9 @@ class GumpRun(gump.util.timing.Timeable,
         gump.util.inspectGarbageCollection(`event`)
             
     def _dispatchRequest(self,request):
-    	"""
-    		Perform the dispatch
-    	"""
+        """
+            Perform the dispatch
+        """
         self.log.debug('Dispatch Request : ' + `request`)    
         for actor in self.actors:
             #self.log.debug('Dispatch Request : ' + `request` + ' to ' + `actor`)       
@@ -198,14 +198,14 @@ class GumpRun(gump.util.timing.Timeable,
             
     def generateEvent(self,entity):
         """
-    		Fire off an entity event.
-    	"""
+            Fire off an entity event.
+        """
         self._dispatchEvent(EntityRunEvent(self, entity))
         
     def generateRequest(self,type):
-    	"""
-    		Fire off a typed request.
-    	"""
+        """
+            Fire off a typed request.
+        """
         self._dispatchRequest(RunRequest(self, type))