From 1fd3e1f2903c54d3b1025e82a978369a55948360 Mon Sep 17 00:00:00 2001 From: Zooko O'Whielacronx Date: Wed, 29 Nov 2006 04:28:51 -0700 Subject: [PATCH] make Simulator instance s global so that I can play with it in "python -i" after main() has exited --- simulator.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/simulator.py b/simulator.py index a93d44d0..a2c8e7af 100644 --- a/simulator.py +++ b/simulator.py @@ -236,12 +236,16 @@ class Simulator: avg_tried = sum(self.published_files) / len(self.published_files) print time, etype, self.added_data, self.failed_files, self.lost_data_bytes, avg_tried, len(self.queen.living_files), self.queen.utilization +global s +s = None + def main(): # rrdtool.create("foo.rrd", # "--step 10", # "DS:files-added:DERIVE::0:1000", # "RRA:AVERAGE:1:1:1200", # ) + global s s = Simulator() s.print_stats_header() for i in range(1000): @@ -251,3 +255,5 @@ def main(): if __name__ == '__main__': main() + + -- 2.45.2