[pypy-commit] lang-smalltalk storage: Renamed variable/parameter.

anton_gulenko noreply at buildbot.pypy.org
Mon Jul 7 13:16:18 CEST 2014


Author: Anton Gulenko <anton.gulenko at googlemail.com>
Branch: storage
Changeset: r852:35d8fe62d2aa
Date: 2014-05-28 15:08 +0200
http://bitbucket.org/pypy/lang-smalltalk/changeset/35d8fe62d2aa/

Log:	Renamed variable/parameter.

diff --git a/spyvm/storage_statistics.py b/spyvm/storage_statistics.py
--- a/spyvm/storage_statistics.py
+++ b/spyvm/storage_statistics.py
@@ -49,7 +49,7 @@
 
 class StatisticsModule(object):
     uses_classname = False
-    def storage_operation(self, operation_key, storage_size, element_classname):
+    def storage_operation(self, operation_key, storage_size, container_classname):
         raise NotImplementedError("Abstract class")
     def print_results(self):
         raise NotImplementedError("Abstract class")
@@ -61,12 +61,12 @@
 
 class StatisticsLogger(StatisticsModule):
     uses_classname = True
-    def storage_operation(self, operation_key, storage_size, element_classname):
-        print self.log_string(operation_key, storage_size, element_classname)
+    def storage_operation(self, operation_key, storage_size, container_classname):
+        print self.log_string(operation_key, storage_size, container_classname)
     
-    def log_string(self, operation_key, storage_size, element_classname):
-        if element_classname:
-            return "%s of %s size %d" % (self.key_string(operation_key), element_classname, storage_size)
+    def log_string(self, operation_key, storage_size, container_classname):
+        if container_classname:
+            return "%s of %s size %d" % (self.key_string(operation_key), container_classname, storage_size)
         else:
             return "%s size %d" % (self.key_string(operation_key), storage_size)
     
@@ -79,7 +79,7 @@
     def __init__(self):
         self.stats = {}
     
-    def storage_operation(self, operation_key, storage_size, element_classname):
+    def storage_operation(self, operation_key, storage_size, container_classname):
         if not operation_key in self.stats:
             self.stats[operation_key] = self.initial_value()
         self.increment_value(self.stats[operation_key], storage_size)
@@ -112,8 +112,8 @@
         self.outgoing_operations = {}
         self.outgoing_elements = {}
     
-    def storage_operation(self, key, storage_size, element_classname):
-        StatisticsCollector.storage_operation(self, key, storage_size, element_classname)
+    def storage_operation(self, key, storage_size, container_classname):
+        StatisticsCollector.storage_operation(self, key, storage_size, container_classname)
         source_type = key[1]
         target_type = key[2]
         self.fill_maps(self.incoming_operations, self.incoming_elements, target_type, storage_size)


More information about the pypy-commit mailing list