From 4f2c049c044f64e838ca92349d38528363cce76f Mon Sep 17 00:00:00 2001 From: Timotej Lazar Date: Mon, 25 Apr 2016 15:33:12 +0200 Subject: Remove file encoding comments from python files UTF-8 is the default. --- python/problems/introduction/average/common.py | 2 -- python/problems/introduction/average/en.py | 2 -- python/problems/introduction/average/sl.py | 1 - python/problems/introduction/ballistics/common.py | 2 -- python/problems/introduction/ballistics/en.py | 2 -- python/problems/introduction/ballistics/sl.py | 1 - python/problems/introduction/fahrenheit_to_celsius/common.py | 2 -- python/problems/introduction/fahrenheit_to_celsius/en.py | 2 -- python/problems/introduction/fahrenheit_to_celsius/sl.py | 1 - python/problems/introduction/fast_fingers/common.py | 2 -- python/problems/introduction/fast_fingers/en.py | 2 -- python/problems/introduction/fast_fingers/sl.py | 1 - python/problems/introduction/fast_fingers_2/common.py | 2 -- python/problems/introduction/fast_fingers_2/en.py | 2 -- python/problems/introduction/fast_fingers_2/sl.py | 1 - python/problems/introduction/pythagorean_theorem/common.py | 2 -- python/problems/introduction/pythagorean_theorem/en.py | 2 -- python/problems/introduction/pythagorean_theorem/sl.py | 1 - 18 files changed, 30 deletions(-) (limited to 'python/problems/introduction') diff --git a/python/problems/introduction/average/common.py b/python/problems/introduction/average/common.py index 28c7a7e..fa152e9 100644 --- a/python/problems/introduction/average/common.py +++ b/python/problems/introduction/average/common.py @@ -1,5 +1,3 @@ -# coding=utf-8 - from python.util import has_token_sequence, string_almost_equal, \ string_contains_number, get_tokens, get_numbers, get_exception_desc from server.hints import Hint diff --git a/python/problems/introduction/average/en.py b/python/problems/introduction/average/en.py index 5ce621e..5f74425 100644 --- a/python/problems/introduction/average/en.py +++ b/python/problems/introduction/average/en.py @@ -1,5 +1,3 @@ -# coding=utf-8 - name = 'Average grade' slug = 'Average grade' diff --git a/python/problems/introduction/average/sl.py b/python/problems/introduction/average/sl.py index 974d441..70a755a 100644 --- a/python/problems/introduction/average/sl.py +++ b/python/problems/introduction/average/sl.py @@ -1,4 +1,3 @@ -# coding=utf-8 import server mod = server.problems.load_language('python', 'sl') diff --git a/python/problems/introduction/ballistics/common.py b/python/problems/introduction/ballistics/common.py index 8cb5c2d..326650b 100644 --- a/python/problems/introduction/ballistics/common.py +++ b/python/problems/introduction/ballistics/common.py @@ -1,5 +1,3 @@ -# coding=utf-8 - from python.util import has_token_sequence, string_almost_equal, \ string_contains_number, get_tokens, get_numbers, get_exception_desc from server.hints import Hint diff --git a/python/problems/introduction/ballistics/en.py b/python/problems/introduction/ballistics/en.py index 6fab80f..0c6f482 100644 --- a/python/problems/introduction/ballistics/en.py +++ b/python/problems/introduction/ballistics/en.py @@ -1,5 +1,3 @@ -# coding=utf-8 - name = 'Ballistics' slug = 'Ballistics' diff --git a/python/problems/introduction/ballistics/sl.py b/python/problems/introduction/ballistics/sl.py index da2c34c..ac5de23 100644 --- a/python/problems/introduction/ballistics/sl.py +++ b/python/problems/introduction/ballistics/sl.py @@ -1,4 +1,3 @@ -# coding=utf-8 import server mod = server.problems.load_language('python', 'sl') diff --git a/python/problems/introduction/fahrenheit_to_celsius/common.py b/python/problems/introduction/fahrenheit_to_celsius/common.py index 10a1067..a62d2ae 100644 --- a/python/problems/introduction/fahrenheit_to_celsius/common.py +++ b/python/problems/introduction/fahrenheit_to_celsius/common.py @@ -1,5 +1,3 @@ -# coding=utf-8 - from python.util import has_token_sequence, string_almost_equal, \ string_contains_number, get_tokens, get_numbers, get_exception_desc from server.hints import Hint diff --git a/python/problems/introduction/fahrenheit_to_celsius/en.py b/python/problems/introduction/fahrenheit_to_celsius/en.py index 5d7522e..4527bef 100644 --- a/python/problems/introduction/fahrenheit_to_celsius/en.py +++ b/python/problems/introduction/fahrenheit_to_celsius/en.py @@ -1,5 +1,3 @@ -# coding=utf-8 - name = 'Converting Fahrenheit to Celsius' slug = 'Converting Fahrenheit to Celsius' diff --git a/python/problems/introduction/fahrenheit_to_celsius/sl.py b/python/problems/introduction/fahrenheit_to_celsius/sl.py index 948bf5a..11b5662 100644 --- a/python/problems/introduction/fahrenheit_to_celsius/sl.py +++ b/python/problems/introduction/fahrenheit_to_celsius/sl.py @@ -1,4 +1,3 @@ -# coding=utf-8 import server mod = server.problems.load_language('python', 'sl') diff --git a/python/problems/introduction/fast_fingers/common.py b/python/problems/introduction/fast_fingers/common.py index 754679d..fe87555 100644 --- a/python/problems/introduction/fast_fingers/common.py +++ b/python/problems/introduction/fast_fingers/common.py @@ -1,5 +1,3 @@ -# coding=utf-8 - from python.util import has_token_sequence, string_almost_equal, \ string_contains_number, get_tokens, get_numbers, get_exception_desc from server.hints import Hint diff --git a/python/problems/introduction/fast_fingers/en.py b/python/problems/introduction/fast_fingers/en.py index ab4637a..d434ed9 100644 --- a/python/problems/introduction/fast_fingers/en.py +++ b/python/problems/introduction/fast_fingers/en.py @@ -1,5 +1,3 @@ -# coding=utf-8 - name = 'Fast fingers' slug = 'Fast fingers' diff --git a/python/problems/introduction/fast_fingers/sl.py b/python/problems/introduction/fast_fingers/sl.py index c181951..d3a2fe0 100644 --- a/python/problems/introduction/fast_fingers/sl.py +++ b/python/problems/introduction/fast_fingers/sl.py @@ -1,4 +1,3 @@ -# coding=utf-8 import server mod = server.problems.load_language('python', 'sl') diff --git a/python/problems/introduction/fast_fingers_2/common.py b/python/problems/introduction/fast_fingers_2/common.py index c738d45..01ad941 100644 --- a/python/problems/introduction/fast_fingers_2/common.py +++ b/python/problems/introduction/fast_fingers_2/common.py @@ -1,5 +1,3 @@ -# coding=utf-8 - from python.util import has_token_sequence, string_almost_equal, \ string_contains_number, get_tokens, get_numbers, get_exception_desc from server.hints import Hint diff --git a/python/problems/introduction/fast_fingers_2/en.py b/python/problems/introduction/fast_fingers_2/en.py index 2172127..7ca530f 100644 --- a/python/problems/introduction/fast_fingers_2/en.py +++ b/python/problems/introduction/fast_fingers_2/en.py @@ -1,5 +1,3 @@ -# coding=utf-8 - name = 'Fast fingers 2' slug = 'Fast fingers 2' diff --git a/python/problems/introduction/fast_fingers_2/sl.py b/python/problems/introduction/fast_fingers_2/sl.py index 6606fbe..19492b8 100644 --- a/python/problems/introduction/fast_fingers_2/sl.py +++ b/python/problems/introduction/fast_fingers_2/sl.py @@ -1,4 +1,3 @@ -# coding=utf-8 import server mod = server.problems.load_language('python', 'sl') diff --git a/python/problems/introduction/pythagorean_theorem/common.py b/python/problems/introduction/pythagorean_theorem/common.py index cebae68..d38ae66 100644 --- a/python/problems/introduction/pythagorean_theorem/common.py +++ b/python/problems/introduction/pythagorean_theorem/common.py @@ -1,5 +1,3 @@ -# coding=utf-8 - from python.util import has_token_sequence, string_almost_equal, \ string_contains_number, get_tokens, get_numbers, get_exception_desc from server.hints import Hint diff --git a/python/problems/introduction/pythagorean_theorem/en.py b/python/problems/introduction/pythagorean_theorem/en.py index 79d7e39..d6c9c61 100644 --- a/python/problems/introduction/pythagorean_theorem/en.py +++ b/python/problems/introduction/pythagorean_theorem/en.py @@ -1,5 +1,3 @@ -# coding=utf-8 - name = 'Pythagorean theorem' slug = 'Pythagorean theorem' diff --git a/python/problems/introduction/pythagorean_theorem/sl.py b/python/problems/introduction/pythagorean_theorem/sl.py index 9500651..ebe67b1 100644 --- a/python/problems/introduction/pythagorean_theorem/sl.py +++ b/python/problems/introduction/pythagorean_theorem/sl.py @@ -1,4 +1,3 @@ -# coding=utf-8 import server mod = server.problems.load_language('python', 'sl') -- cgit v1.2.1