gh-100176: remove incorrect version compatibility check from argument clinic (#100190)

This commit is contained in:
Shantanu 2022-12-12 03:52:12 -08:00 committed by GitHub
parent 935ef59321
commit 621a1790c4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 0 additions and 4 deletions

View File

@ -5212,10 +5212,6 @@ clinic = None
def main(argv):
import sys
if sys.version_info.major < 3 or sys.version_info.minor < 3:
sys.exit("Error: clinic.py requires Python 3.3 or greater.")
import argparse
cmdline = argparse.ArgumentParser(
description="""Preprocessor for CPython C files.