Remove NoneType redefinition from clinic.py (#100551)

This commit is contained in:
Nikita Sobolev 2022-12-27 19:11:39 +03:00 committed by GitHub
parent b3da698952
commit b0ea28913e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -27,7 +27,6 @@
import types
from types import *
NoneType = type(None)
# TODO:
#
@ -42,7 +41,6 @@
version = '1'
NoneType = type(None)
NO_VARARG = "PY_SSIZE_T_MAX"
CLINIC_PREFIX = "__clinic_"
CLINIC_PREFIXED_ARGS = {"args"}