mercurial/mail.py
changeset 51290 f4a0806081f2
parent 51287 f15cb5111a1e
equal deleted inserted replaced
51289:7bd7fcc711f2 51290:f4a0806081f2
    40 from .utils import (
    40 from .utils import (
    41     procutil,
    41     procutil,
    42     stringutil,
    42     stringutil,
    43     urlutil,
    43     urlutil,
    44 )
    44 )
    45 
       
    46 
       
    47 # keep pyflakes happy
       
    48 assert [
       
    49     Any,
       
    50     List,
       
    51     Tuple,
       
    52     Union,
       
    53 ]
       
    54 
    45 
    55 
    46 
    56 class STARTTLS(smtplib.SMTP):
    47 class STARTTLS(smtplib.SMTP):
    57     """Derived class to verify the peer certificate for STARTTLS.
    48     """Derived class to verify the peer certificate for STARTTLS.
    58 
    49