diff options
Diffstat (limited to 'circulate')
-rw-r--r-- | circulate/sslc_allreg.py | 2 | ||||
-rw-r--r-- | circulate/sslc_bug.py | 2 | ||||
-rw-r--r-- | circulate/sslc_science.py | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/circulate/sslc_allreg.py b/circulate/sslc_allreg.py index b93405a..16dc12f 100644 --- a/circulate/sslc_allreg.py +++ b/circulate/sslc_allreg.py @@ -2,7 +2,7 @@ scores = [[], [], [], [], []] ninety_percents = [{}, {}, {}, {}, {}] for record in open('sslc1.txt'): - record = record.strip() +# record = record.strip() fields = record.split(';') region_code = fields[0].strip() diff --git a/circulate/sslc_bug.py b/circulate/sslc_bug.py index b018cfa..d7be3cb 100644 --- a/circulate/sslc_bug.py +++ b/circulate/sslc_bug.py @@ -1,7 +1,7 @@ science = {} for record in open('sslc1.txt'): - record = record.strip() +# record = record.strip() fields = record.split(';') region_code = fields[0].strip() diff --git a/circulate/sslc_science.py b/circulate/sslc_science.py index 7f96128..83a52ae 100644 --- a/circulate/sslc_science.py +++ b/circulate/sslc_science.py @@ -1,7 +1,7 @@ science = {} for record in open('sslc1.txt'): - record = record.strip() +# record = record.strip() fields = record.split(';') region_code = fields[0].strip() |