Skip to content

remove checks against patch versions #987

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Mar 13, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion stdlib/2and3/asynchat.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ class async_chat (asyncore.dispatcher):
def initiate_send(self) -> None: ...
def discard_buffers(self) -> None: ...

if sys.version_info < (3, 0, 0):
if sys.version_info < (3, 0):
class fifo:
def __init__(self, list: Sequence[Union[str, simple_producer]] = ...) -> None: ...
def __len__(self) -> int: ...
Expand Down
2 changes: 1 addition & 1 deletion stdlib/3/email/message.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ class MIMEPart:
**kw: Any) -> None: ...
def clear(self) -> None: ...
def clear_content(self) -> None: ...
if sys.version_info >= (3, 4, 2):
if sys.version_info >= (3, 4):
def is_attachment(self) -> bool: ...
else:
@property
Expand Down
2 changes: 0 additions & 2 deletions stdlib/3/ssl.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,6 @@ if sys.version_info >= (3, 4):
capath: Optional[str] = ...,
cadata: Optional[str] = ...) -> 'SSLContext': ...

if sys.version_info >= (3, 4, 3):
def _create_unverified_context(protocol: int = ..., *,
cert_reqs: int = ...,
check_hostname: bool = ...,
Expand Down Expand Up @@ -94,7 +93,6 @@ if sys.version_info >= (3, 4):
VERIFY_CRL_CHECK_LEAF = ... # type: int
VERIFY_CRL_CHECK_CHAIN = ... # type: int
VERIFY_X509_STRICT = ... # type: int
if sys.version_info >= (3, 4, 4):
VERIFY_X509_TRUSTED_FIRST = ... # type: int

PROTOCOL_SSLv23 = ... # type: int
Expand Down