Lots of changes.
[python_utils.git] / misc_utils.py
index 62e579846b52bed06ade1a37b3e1959bc5c3fa0c..3775d3f4f1c72644e1f66f61d14c5cb6c4336b10 100644 (file)
@@ -7,29 +7,3 @@ import string_utils
 
 def is_running_as_root() -> bool:
     return os.geteuid() == 0
-
-
-def is_are(n: int) -> str:
-    if n == 1:
-        return "is"
-    return "are"
-
-
-def pluralize(n: int) -> str:
-    if n == 1:
-        return ""
-    return "s"
-
-
-def thify(n: int) -> str:
-    digit = str(n)
-    assert string_utils.is_integer_number(digit)
-    digit = digit[-1:]
-    if digit == "1":
-        return "st"
-    elif digit == "2":
-        return "nd"
-    elif digit == "3":
-        return "rd"
-    else:
-        return "th"