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/functions/assign_numbers/common.py | 2 -- python/problems/functions/assign_numbers/en.py | 2 -- python/problems/functions/assign_numbers/sl.py | 1 - python/problems/functions/body_mass_index/common.py | 2 -- python/problems/functions/body_mass_index/en.py | 2 -- python/problems/functions/body_mass_index/sl.py | 2 -- python/problems/functions/body_mass_index_2/common.py | 2 -- python/problems/functions/body_mass_index_2/en.py | 2 -- python/problems/functions/body_mass_index_2/sl.py | 1 - python/problems/functions/divisors/common.py | 2 -- python/problems/functions/divisors/en.py | 2 -- python/problems/functions/divisors/sl.py | 2 -- python/problems/functions/divisors_sum/common.py | 2 -- python/problems/functions/divisors_sum/en.py | 2 -- python/problems/functions/divisors_sum/sl.py | 1 - python/problems/functions/friendly_numbers/common.py | 2 -- python/problems/functions/friendly_numbers/en.py | 2 -- python/problems/functions/friendly_numbers/sl.py | 1 - python/problems/functions/greatest/common.py | 2 -- python/problems/functions/greatest/en.py | 2 -- python/problems/functions/greatest/sl.py | 1 - python/problems/functions/greatest_absolutist/common.py | 2 -- python/problems/functions/greatest_absolutist/en.py | 2 -- python/problems/functions/greatest_absolutist/sl.py | 1 - python/problems/functions/greatest_negative/common.py | 2 -- python/problems/functions/greatest_negative/en.py | 2 -- python/problems/functions/greatest_negative/sl.py | 1 - python/problems/functions/palindrome/common.py | 2 -- python/problems/functions/palindrome/en.py | 2 -- python/problems/functions/palindrome/sl.py | 1 - python/problems/functions/palindromic_numbers/common.py | 2 -- python/problems/functions/palindromic_numbers/en.py | 2 -- python/problems/functions/palindromic_numbers/sl.py | 1 - python/problems/functions/perfect_numbers/common.py | 2 -- python/problems/functions/perfect_numbers/en.py | 2 -- python/problems/functions/perfect_numbers/sl.py | 1 - python/problems/functions/prime_numbers/common.py | 2 -- python/problems/functions/prime_numbers/en.py | 2 -- python/problems/functions/prime_numbers/sl.py | 1 - 39 files changed, 67 deletions(-) (limited to 'python/problems/functions') diff --git a/python/problems/functions/assign_numbers/common.py b/python/problems/functions/assign_numbers/common.py index effd061..a997d2c 100644 --- a/python/problems/functions/assign_numbers/common.py +++ b/python/problems/functions/assign_numbers/common.py @@ -1,5 +1,3 @@ -# coding=utf-8 - import re from python.util import has_token_sequence, string_almost_equal, \ string_contains_number, get_tokens, get_numbers, get_exception_desc diff --git a/python/problems/functions/assign_numbers/en.py b/python/problems/functions/assign_numbers/en.py index a68c6c8..ebd7ecd 100644 --- a/python/problems/functions/assign_numbers/en.py +++ b/python/problems/functions/assign_numbers/en.py @@ -1,5 +1,3 @@ -# coding=utf-8 - id = 225 name = 'Assign numbers' slug = 'Assign numbers' diff --git a/python/problems/functions/assign_numbers/sl.py b/python/problems/functions/assign_numbers/sl.py index 767e045..259321a 100644 --- a/python/problems/functions/assign_numbers/sl.py +++ b/python/problems/functions/assign_numbers/sl.py @@ -1,4 +1,3 @@ -# coding=utf-8 import server mod = server.problems.load_language('python', 'sl') diff --git a/python/problems/functions/body_mass_index/common.py b/python/problems/functions/body_mass_index/common.py index 1ff56b6..4331e06 100644 --- a/python/problems/functions/body_mass_index/common.py +++ b/python/problems/functions/body_mass_index/common.py @@ -1,5 +1,3 @@ -# coding=utf-8 - import re from python.util import has_token_sequence, string_almost_equal, \ string_contains_number, get_tokens, get_numbers, get_exception_desc, almost_equal diff --git a/python/problems/functions/body_mass_index/en.py b/python/problems/functions/body_mass_index/en.py index fb4663f..68d7546 100644 --- a/python/problems/functions/body_mass_index/en.py +++ b/python/problems/functions/body_mass_index/en.py @@ -1,5 +1,3 @@ -# coding=utf-8 - id = 226 name = 'Body mass index' slug = 'Body mass index' diff --git a/python/problems/functions/body_mass_index/sl.py b/python/problems/functions/body_mass_index/sl.py index 995e974..074b7e5 100644 --- a/python/problems/functions/body_mass_index/sl.py +++ b/python/problems/functions/body_mass_index/sl.py @@ -1,8 +1,6 @@ -# coding=utf-8 import server mod = server.problems.load_language('python', 'sl') - id = 226 name = 'Indeks telesne teže' slug = 'Indeks telesne teže' diff --git a/python/problems/functions/body_mass_index_2/common.py b/python/problems/functions/body_mass_index_2/common.py index 176a59d..f4e2426 100644 --- a/python/problems/functions/body_mass_index_2/common.py +++ b/python/problems/functions/body_mass_index_2/common.py @@ -1,5 +1,3 @@ -# coding=utf-8 - import re from python.util import has_token_sequence, string_almost_equal, \ string_contains_number, get_tokens, get_numbers, get_exception_desc, almost_equal diff --git a/python/problems/functions/body_mass_index_2/en.py b/python/problems/functions/body_mass_index_2/en.py index b34718b..7dd5a43 100644 --- a/python/problems/functions/body_mass_index_2/en.py +++ b/python/problems/functions/body_mass_index_2/en.py @@ -1,5 +1,3 @@ -# coding=utf-8 - name = 'Body mass index 2' slug = 'Body mass index 2' diff --git a/python/problems/functions/body_mass_index_2/sl.py b/python/problems/functions/body_mass_index_2/sl.py index 9f323bd..c6b069a 100644 --- a/python/problems/functions/body_mass_index_2/sl.py +++ b/python/problems/functions/body_mass_index_2/sl.py @@ -1,4 +1,3 @@ -# coding=utf-8 import server mod = server.problems.load_language('python', 'sl') diff --git a/python/problems/functions/divisors/common.py b/python/problems/functions/divisors/common.py index afff7c5..6ba85fd 100644 --- a/python/problems/functions/divisors/common.py +++ b/python/problems/functions/divisors/common.py @@ -1,5 +1,3 @@ -# coding=utf-8 - import re from python.util import has_token_sequence, string_almost_equal, \ string_contains_number, get_tokens, get_numbers, get_exception_desc diff --git a/python/problems/functions/divisors/en.py b/python/problems/functions/divisors/en.py index d1e71c2..a9ed603 100644 --- a/python/problems/functions/divisors/en.py +++ b/python/problems/functions/divisors/en.py @@ -1,5 +1,3 @@ -# coding=utf-8 - id = 230 name = 'Divisors' slug = 'Divisors' diff --git a/python/problems/functions/divisors/sl.py b/python/problems/functions/divisors/sl.py index b4f0070..49e2f5a 100644 --- a/python/problems/functions/divisors/sl.py +++ b/python/problems/functions/divisors/sl.py @@ -1,8 +1,6 @@ -# coding=utf-8 import server mod = server.problems.load_language('python', 'sl') - id = 230 name = 'Delitelji' slug = 'Delitelji' diff --git a/python/problems/functions/divisors_sum/common.py b/python/problems/functions/divisors_sum/common.py index 142a448..e76ee38 100644 --- a/python/problems/functions/divisors_sum/common.py +++ b/python/problems/functions/divisors_sum/common.py @@ -1,5 +1,3 @@ -# coding=utf-8 - import re from python.util import has_token_sequence, string_almost_equal, \ string_contains_number, get_tokens, get_numbers, get_exception_desc diff --git a/python/problems/functions/divisors_sum/en.py b/python/problems/functions/divisors_sum/en.py index 67806f7..c6efaba 100644 --- a/python/problems/functions/divisors_sum/en.py +++ b/python/problems/functions/divisors_sum/en.py @@ -1,5 +1,3 @@ -# coding=utf-8 - id = 231 name = 'Divisors sum' slug = 'Divisors sum' diff --git a/python/problems/functions/divisors_sum/sl.py b/python/problems/functions/divisors_sum/sl.py index f06b1dd..490450a 100644 --- a/python/problems/functions/divisors_sum/sl.py +++ b/python/problems/functions/divisors_sum/sl.py @@ -1,4 +1,3 @@ -# coding=utf-8 import server mod = server.problems.load_language('python', 'sl') diff --git a/python/problems/functions/friendly_numbers/common.py b/python/problems/functions/friendly_numbers/common.py index fe121dc..5c7e11b 100644 --- a/python/problems/functions/friendly_numbers/common.py +++ b/python/problems/functions/friendly_numbers/common.py @@ -1,5 +1,3 @@ -# coding=utf-8 - import re from python.util import has_token_sequence, string_almost_equal, \ string_contains_number, get_tokens, get_numbers, get_exception_desc diff --git a/python/problems/functions/friendly_numbers/en.py b/python/problems/functions/friendly_numbers/en.py index c77dca1..f186528 100644 --- a/python/problems/functions/friendly_numbers/en.py +++ b/python/problems/functions/friendly_numbers/en.py @@ -1,5 +1,3 @@ -# coding=utf-8 - id = 233 name = 'Amicable numbers' slug = 'Amicable numbers' diff --git a/python/problems/functions/friendly_numbers/sl.py b/python/problems/functions/friendly_numbers/sl.py index dd15e0d..90772f6 100644 --- a/python/problems/functions/friendly_numbers/sl.py +++ b/python/problems/functions/friendly_numbers/sl.py @@ -1,4 +1,3 @@ -# coding=utf-8 import server mod = server.problems.load_language('python', 'sl') diff --git a/python/problems/functions/greatest/common.py b/python/problems/functions/greatest/common.py index 726fa88..9d5401f 100644 --- a/python/problems/functions/greatest/common.py +++ b/python/problems/functions/greatest/common.py @@ -1,5 +1,3 @@ -# coding=utf-8 - import re from python.util import has_token_sequence, string_almost_equal, \ string_contains_number, get_tokens, get_numbers, get_exception_desc diff --git a/python/problems/functions/greatest/en.py b/python/problems/functions/greatest/en.py index acf4672..a207a9c 100644 --- a/python/problems/functions/greatest/en.py +++ b/python/problems/functions/greatest/en.py @@ -1,5 +1,3 @@ -# coding=utf-8 - name = 'Maximum number' slug = 'Maximum number' diff --git a/python/problems/functions/greatest/sl.py b/python/problems/functions/greatest/sl.py index 467de07..470afdd 100644 --- a/python/problems/functions/greatest/sl.py +++ b/python/problems/functions/greatest/sl.py @@ -1,4 +1,3 @@ -# coding=utf-8 import server mod = server.problems.load_language('python', 'sl') diff --git a/python/problems/functions/greatest_absolutist/common.py b/python/problems/functions/greatest_absolutist/common.py index 3226b87..0d0eef4 100644 --- a/python/problems/functions/greatest_absolutist/common.py +++ b/python/problems/functions/greatest_absolutist/common.py @@ -1,5 +1,3 @@ -# coding=utf-8 - import re from python.util import has_token_sequence, string_almost_equal, \ string_contains_number, get_tokens, get_numbers, get_exception_desc diff --git a/python/problems/functions/greatest_absolutist/en.py b/python/problems/functions/greatest_absolutist/en.py index 1ede4a9..dee9fa5 100644 --- a/python/problems/functions/greatest_absolutist/en.py +++ b/python/problems/functions/greatest_absolutist/en.py @@ -1,5 +1,3 @@ -# coding=utf-8 - name = 'Greatest absolutist' slug = 'Greatest absolutist' diff --git a/python/problems/functions/greatest_absolutist/sl.py b/python/problems/functions/greatest_absolutist/sl.py index dd0bd99..7549433 100644 --- a/python/problems/functions/greatest_absolutist/sl.py +++ b/python/problems/functions/greatest_absolutist/sl.py @@ -1,4 +1,3 @@ -# coding=utf-8 import server mod = server.problems.load_language('python', 'sl') diff --git a/python/problems/functions/greatest_negative/common.py b/python/problems/functions/greatest_negative/common.py index 72754e2..6b25e28 100644 --- a/python/problems/functions/greatest_negative/common.py +++ b/python/problems/functions/greatest_negative/common.py @@ -1,5 +1,3 @@ -# coding=utf-8 - import re from python.util import has_token_sequence, string_almost_equal, \ string_contains_number, get_tokens, get_numbers, get_exception_desc diff --git a/python/problems/functions/greatest_negative/en.py b/python/problems/functions/greatest_negative/en.py index 5c2919a..d9bd96d 100644 --- a/python/problems/functions/greatest_negative/en.py +++ b/python/problems/functions/greatest_negative/en.py @@ -1,5 +1,3 @@ -# coding=utf-8 - name = 'Greatest negativist' slug = 'Greatest negativist' diff --git a/python/problems/functions/greatest_negative/sl.py b/python/problems/functions/greatest_negative/sl.py index 38a9f08..5fae24b 100644 --- a/python/problems/functions/greatest_negative/sl.py +++ b/python/problems/functions/greatest_negative/sl.py @@ -1,4 +1,3 @@ -# coding=utf-8 import server mod = server.problems.load_language('python', 'sl') diff --git a/python/problems/functions/palindrome/common.py b/python/problems/functions/palindrome/common.py index eec8211..0acdd20 100644 --- a/python/problems/functions/palindrome/common.py +++ b/python/problems/functions/palindrome/common.py @@ -1,5 +1,3 @@ -# coding=utf-8 - import re from python.util import has_token_sequence, string_almost_equal, \ string_contains_number, get_tokens, get_numbers, get_exception_desc diff --git a/python/problems/functions/palindrome/en.py b/python/problems/functions/palindrome/en.py index 784c395..fbc1c68 100644 --- a/python/problems/functions/palindrome/en.py +++ b/python/problems/functions/palindrome/en.py @@ -1,5 +1,3 @@ -# coding=utf-8 - id = 228 name = 'Palindrome' slug = 'Palindrome' diff --git a/python/problems/functions/palindrome/sl.py b/python/problems/functions/palindrome/sl.py index 9ddba0d..0fb8182 100644 --- a/python/problems/functions/palindrome/sl.py +++ b/python/problems/functions/palindrome/sl.py @@ -1,4 +1,3 @@ -# coding=utf-8 import server mod = server.problems.load_language('python', 'sl') diff --git a/python/problems/functions/palindromic_numbers/common.py b/python/problems/functions/palindromic_numbers/common.py index 6f49896..ec12df9 100644 --- a/python/problems/functions/palindromic_numbers/common.py +++ b/python/problems/functions/palindromic_numbers/common.py @@ -1,5 +1,3 @@ -# coding=utf-8 - import re from python.util import has_token_sequence, string_almost_equal, \ string_contains_number, get_tokens, get_numbers, get_exception_desc diff --git a/python/problems/functions/palindromic_numbers/en.py b/python/problems/functions/palindromic_numbers/en.py index 5f4ea76..fa987c2 100644 --- a/python/problems/functions/palindromic_numbers/en.py +++ b/python/problems/functions/palindromic_numbers/en.py @@ -1,5 +1,3 @@ -# coding=utf-8 - id = 229 name = 'Palindromic numbers' slug = 'Palindromic numbers' diff --git a/python/problems/functions/palindromic_numbers/sl.py b/python/problems/functions/palindromic_numbers/sl.py index fef1d96..3f1844c 100644 --- a/python/problems/functions/palindromic_numbers/sl.py +++ b/python/problems/functions/palindromic_numbers/sl.py @@ -1,4 +1,3 @@ -# coding=utf-8 import server mod = server.problems.load_language('python', 'sl') diff --git a/python/problems/functions/perfect_numbers/common.py b/python/problems/functions/perfect_numbers/common.py index 72267e6..e93cd03 100644 --- a/python/problems/functions/perfect_numbers/common.py +++ b/python/problems/functions/perfect_numbers/common.py @@ -1,5 +1,3 @@ -# coding=utf-8 - import re from python.util import has_token_sequence, string_almost_equal, \ string_contains_number, get_tokens, get_numbers, get_exception_desc diff --git a/python/problems/functions/perfect_numbers/en.py b/python/problems/functions/perfect_numbers/en.py index a7cb94e..5c476a4 100644 --- a/python/problems/functions/perfect_numbers/en.py +++ b/python/problems/functions/perfect_numbers/en.py @@ -1,5 +1,3 @@ -# coding=utf-8 - id = 232 name = 'Perfect numbers' slug = 'Perfect numbers' diff --git a/python/problems/functions/perfect_numbers/sl.py b/python/problems/functions/perfect_numbers/sl.py index 156b41d..57bfe38 100644 --- a/python/problems/functions/perfect_numbers/sl.py +++ b/python/problems/functions/perfect_numbers/sl.py @@ -1,4 +1,3 @@ -# coding=utf-8 import server mod = server.problems.load_language('python', 'sl') diff --git a/python/problems/functions/prime_numbers/common.py b/python/problems/functions/prime_numbers/common.py index 33eb134..0f53eba 100644 --- a/python/problems/functions/prime_numbers/common.py +++ b/python/problems/functions/prime_numbers/common.py @@ -1,5 +1,3 @@ -# coding=utf-8 - import re from python.util import has_token_sequence, string_almost_equal, \ string_contains_number, get_tokens, get_numbers, get_exception_desc diff --git a/python/problems/functions/prime_numbers/en.py b/python/problems/functions/prime_numbers/en.py index 87c01a2..daf323b 100644 --- a/python/problems/functions/prime_numbers/en.py +++ b/python/problems/functions/prime_numbers/en.py @@ -1,5 +1,3 @@ -# coding=utf-8 - id = 234 name = 'Prime numbers' slug = 'Prime numbers' diff --git a/python/problems/functions/prime_numbers/sl.py b/python/problems/functions/prime_numbers/sl.py index a224696..60ba049 100644 --- a/python/problems/functions/prime_numbers/sl.py +++ b/python/problems/functions/prime_numbers/sl.py @@ -1,4 +1,3 @@ -# coding=utf-8 import server mod = server.problems.load_language('python', 'sl') -- cgit v1.2.1