Switch library manager to the new package manager

This commit is contained in:
Ivan Kravets
2020-08-12 13:27:05 +03:00
parent 2dd69e21c0
commit 893ca1b328
30 changed files with 1318 additions and 915 deletions
+8
View File
@@ -50,6 +50,14 @@ def get_object_members(obj, ignore_private=True):
}
def ci_strings_are_equal(a, b):
if a == b:
return True
if not a or not b:
return False
return a.strip().lower() == b.strip().lower()
if PY2:
import imp