1. 17 Sep, 2007 6 commits
  2. 16 Sep, 2007 2 commits
  3. 15 Sep, 2007 1 commit
  4. 14 Sep, 2007 5 commits
  5. 13 Sep, 2007 8 commits
  6. 12 Sep, 2007 8 commits
  7. 11 Sep, 2007 5 commits
  8. 10 Sep, 2007 5 commits
    • Bill Janssen's avatar
      43ad53b9
    • Guido van Rossum's avatar
      Patch # 1026 by Benjamin Aranguren (with Alex Martelli): · 808739af
      Guido van Rossum authored
      Backport abc.py and isinstance/issubclass overloading to 2.6.
      
      I had to backport test_typechecks.py myself, and make one small change
      to abc.py to avoid duplicate work when x.__class__ and type(x) are the
      same.
      808739af
    • Guido van Rossum's avatar
      Patch # 1140 (my code, approved by Effbot). · 6595ffe4
      Guido van Rossum authored
      Make sure the type of the return value of re.sub(x, y, z) is the type
      of y+x (i.e. unicode if either is unicode, str if they are both str)
      even if there are no substitutions or if x==z (which triggered various
      special cases in join_list()).
      
      Could be backported to 2.5; no need to port to 3.0.
      6595ffe4
    • Bill Janssen's avatar
      More work on SSL support. · 6e5fc0e2
      Bill Janssen authored
      * Much expanded test suite:
      
        All protocols tested against all other protocols.
        All protocols tested with all certificate options.
        Tests for bad key and bad cert.
        Test of STARTTLS functionality.
        Test of RAND_* functions.
      
      * Fixes for threading/malloc bug.
      
      * Issue 1065 fixed:
      
        sslsocket class renamed to SSLSocket.
        sslerror class renamed to SSLError.
        Function "wrap_socket" now used to wrap an existing socket.
      
      * Issue 1583946 finally fixed:
      
        Support for subjectAltName added.
        Subject name now returned as proper DN list of RDNs.
      
      * SSLError exported from socket as "sslerror".
      
      * RAND_* functions properly exported from ssl.py.
      
      * Documentation improved:
      
        Example of how to create a self-signed certificate.
        Better indexing.
      6e5fc0e2
    • Brett Cannon's avatar
      0a566a73