1. 18 Jan, 2019 1 commit
  2. 11 Jan, 2019 3 commits
  3. 22 Nov, 2018 1 commit
  4. 20 Nov, 2018 1 commit
  5. 19 Nov, 2018 1 commit
  6. 02 Oct, 2018 10 commits
  7. 17 Oct, 2017 7 commits
    • Tres Seaver's avatar
      svb · c59d6660
      Tres Seaver authored
      c59d6660
    • Tres Seaver's avatar
      Prep 2.3.0 release. · 01f15788
      Tres Seaver authored
      01f15788
    • Tres Seaver's avatar
      Garden changelog. · 51b9ec7c
      Tres Seaver authored
      51b9ec7c
    • Tres Seaver's avatar
      Use '.rst' for changelog. · a1db64c1
      Tres Seaver authored
      Fix typo in Trove classifiers.
      a1db64c1
    • Tres Seaver's avatar
      Merge pull request #20 from navytux/y/zeo-ipv6 · 1688e10b
      Tres Seaver authored
      zeo: Fix parsing URI with IPv6 address
      1688e10b
    • Kirill Smelkov's avatar
      Sign CLA. · a3b501ce
      Kirill Smelkov authored
      a3b501ce
    • Kirill Smelkov's avatar
      zeo: Fix parsing URI with IPv6 address · 696b84c4
      Kirill Smelkov authored
      The code was crashing this way:
      
      ---- 8< ----
      ======================================================================
      ERROR: test_call_ipv6 (zodburi.tests.test_resolvers.TestClientStorageURIResolver)
      ----------------------------------------------------------------------
      Traceback (most recent call last):
        File "/home/kirr/src/wendelin/venv/z-dev/local/lib/python2.7/site-packages/mock/mock.py", line 1305, in patched
          return func(*args, **keywargs)
        File "/home/kirr/src/wendelin/z/zodburi/zodburi/tests/test_resolvers.py", line 265, in test_call_ipv6
          factory, dbkw = resolver('zeo://[::1]:9090?debug=true')
        File "/home/kirr/src/wendelin/z/zodburi/zodburi/resolvers.py", line 141, in __call__
          host, port = netloc.split(':')
      ValueError: too many values to unpack
      
      ======================================================================
      ERROR: test_call_ipv6_no_port (zodburi.tests.test_resolvers.TestClientStorageURIResolver)
      ----------------------------------------------------------------------
      Traceback (most recent call last):
        File "/home/kirr/src/wendelin/venv/z-dev/local/lib/python2.7/site-packages/mock/mock.py", line 1305, in patched
          return func(*args, **keywargs)
        File "/home/kirr/src/wendelin/z/zodburi/zodburi/tests/test_resolvers.py", line 258, in test_call_ipv6_no_port
          factory, dbkw = resolver('zeo://[::1]?debug=true')
        File "/home/kirr/src/wendelin/z/zodburi/zodburi/resolvers.py", line 141, in __call__
          host, port = netloc.split(':')
      ValueError: too many values to unpack
      ---- 8< ----
      
      Fix it by leveraging the fact that urlparse.urlsplit return() tuple-like object
      with additional .hostname and .port attributes which already parse IPv6 correctly:
      
      In [2]: u = urlsplit('http://[::1]:5553')
      
      In [3]: u
      Out[3]: SplitResult(scheme='http', netloc='[::1]:5553', path='', query='', fragment='')
      
      In [4]: u.netloc
      Out[4]: '[::1]:5553'
      
      In [5]: u.hostname
      Out[5]: '::1'
      
      In [6]: u.port
      Out[6]: 5553
      
      In [7]: u = urlsplit('http://[::1]')
      
      In [8]: u.hostname
      Out[8]: '::1'
      
      In [9]: u.port
      
      In [10]: repr(u.port)
      Out[10]: 'None'
      696b84c4
  8. 06 Oct, 2017 4 commits
  9. 05 May, 2017 3 commits
  10. 19 Apr, 2017 2 commits
  11. 18 Apr, 2017 6 commits
  12. 17 Apr, 2017 1 commit