diff --git a/CHANGELOG.md b/CHANGELOG.md index 63aecbb..55fc5c6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## 1.1.1 + +Cleanup + ## 1.1.0 - Added: Now supports Python >= 3.5 diff --git a/cunumbers/cunumbers.py b/cunumbers/cunumbers.py index a43ad98..6176249 100644 --- a/cunumbers/cunumbers.py +++ b/cunumbers/cunumbers.py @@ -15,7 +15,6 @@ cu_dict = "{0}{1}{0}{2}{0}{3}". format(cu_null, cu_digits, cu_tens, cu_hundreds) cu_group_regex = "({0}*[{1}]?(?:[{4}]?{3}|[{2}]?[{4}]?))". format(cu_thousand, cu_hundreds, cu_tens[1:], cu_tens[0], cu_digits) -print(cu_group_regex) def _to_cu_hundred(hundred = 0, group = 0): @@ -93,9 +92,7 @@ def _to_arab_number(input = ""): hundreds = re.split("%s" % (cu_group_regex), sub_result) while hundreds.count(""): # Purge empty strs from the hundreds collection hundreds.remove("") - print(hundreds) hundreds.reverse() - print(hundreds) result = 0 for i, k in enumerate(hundreds): diff --git a/setup.cfg b/setup.cfg index e3214db..7301494 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = cu-numbers -version = 1.1.0 +version = 1.1.1 author = Andrei Shur author_email = amshoor@gmail.com description = Church Slavonic script numbers conversion