From 61b4bb24e06aa955484293d35fa926c07887544b Mon Sep 17 00:00:00 2001 From: Peter LaFosse Date: Mon, 7 Jun 2021 09:59:54 -0400 Subject: Add type hints to basicblock.py, lowlevelil.py, architecture.py --- python/enum/__init__.py | 13 ------------- 1 file changed, 13 deletions(-) (limited to 'python/enum') diff --git a/python/enum/__init__.py b/python/enum/__init__.py index 5045b4aa..8f1f4f5e 100644 --- a/python/enum/__init__.py +++ b/python/enum/__init__.py @@ -22,19 +22,6 @@ try: except ImportError: OrderedDict = None -try: - basestring -except NameError: - # In Python 2 basestring is the ancestor of both str and unicode - # in Python 3 it's just str, but was missing in 3.1 - basestring = str - -try: - unicode -except NameError: - # In Python 3 unicode no longer exists (it's just str) - unicode = str - class _RouteClassAttributeToGetattr(object): """Route attribute access on a class to __getattr__. -- cgit v1.3.1