1. 22 Apr, 2019 12 commits
  2. 21 Apr, 2019 1 commit
  3. 20 Apr, 2019 2 commits
  4. 19 Apr, 2019 1 commit
  5. 18 Apr, 2019 6 commits
  6. 17 Apr, 2019 11 commits
  7. 16 Apr, 2019 5 commits
  8. 15 Apr, 2019 2 commits
    • Inada Naoki's avatar
      bpo-27860: ipaddress: fix Interface missed some attributes (GH-12836) · 6fa84bd1
      Inada Naoki authored
      IPv4Interface and IPv6Interface did not has netmask and hostmask
      attributes when its argument is bytes or int.
      
      This commit extracts method for constructors of Network and Interface,
      and ensure Interface class always provides them.
      6fa84bd1
    • Victor Stinner's avatar
      bpo-36348: IMAP4.logout() doesn't ignore exc (GH-12411) · 74125a60
      Victor Stinner authored
      The imap.IMAP4.logout() method no longer ignores silently arbitrary
      exceptions.
      
      Changes:
      
      * The IMAP4.logout() method now expects a "BYE" untagged response,
        rather than relying on _check_bye() which raises a self.abort()
        exception.
      * IMAP4.__exit__() now does nothing if the client already logged out.
      * Add more debug info if test_logout() tests fail.
      74125a60