Remove third_party/3/enum.py (#2563)

All Python 3 versions supported by typeshed (3.4+) have enum as part
of the standard library.

Make the third-party Python 2 version consistent with the Python 3 version.
This commit is contained in:
Sebastian Rittau
2018-10-27 17:54:56 +02:00
committed by Jelle Zijlstra
parent 07bc1c9997
commit e3a79d0ce6
4 changed files with 32 additions and 68 deletions

View File

@@ -1,4 +1,4 @@
# NB: third_party/3/enum.pyi and stdlib/3.4/enum.pyi must remain consistent!
# NB: third_party/2/enum.pyi and stdlib/3.4/enum.pyi must remain consistent!
import sys
from typing import Any, Iterator, List, Mapping, Type, TypeVar, Union
from abc import ABCMeta