1. 03 Aug, 2015 9 commits
  2. 01 Aug, 2015 1 commit
  3. 28 Jul, 2015 1 commit
  4. 26 Jul, 2015 10 commits
    • Denis Bilenko's avatar
      make test_hub_join_timeout.py as flaky on windows · 89acc501
      Denis Bilenko authored
       C:\Python27\python.exe -u test_hub_join_timeout.py
        Traceback (most recent call last):
          File "test_hub_join_timeout.py", line 44, in <module>
            result = gevent.wait(timeout=10)
          File "C:\Python27\lib\contextlib.py", line 24, in __exit__
            self.gen.next()
          File "test_hub_join_timeout.py", line 22, in expected_time
            assert expected - fuzzy <= elapsed <= expected + fuzzy, 'Expected: %r; elapsed: %r' % (expected, elapsed)
        AssertionError: Expected: 0.1; elapsed: 0.15600013732910156
      89acc501
    • Denis Bilenko's avatar
      add current failures for windows/py3 · 1704a30f
      Denis Bilenko authored
      1704a30f
    • Denis Bilenko's avatar
      e78004f7
    • Denis Bilenko's avatar
      disable older Python versions on appveyor · 860d5a58
      Denis Bilenko authored
      860d5a58
    • Denis Bilenko's avatar
      do not try to run 'make' on appveyor · 6f14c4ac
      Denis Bilenko authored
      it does not exist here. Instead, manually copy all build commands into appveyor.yml.
      
      Note, ECHO without arguments prints "ECHO is off." on Windows, so it should not be used.
      6f14c4ac
    • Denis Bilenko's avatar
    • Denis Bilenko's avatar
      Makefile: remove unnecessary 'echo' · 4f282620
      Denis Bilenko authored
      Under Windows that command actually breaks stuff, since 'echo' without arguments prints 'ECHO is off.'.
      4f282620
    • Denis Bilenko's avatar
      fix libev compilation error on Windows / AppVeyor · 249d93b3
      Denis Bilenko authored
      libev\ev.c(1813) : error C2059: syntax error : 'type'
      249d93b3
    • Denis Bilenko's avatar
      fix TypeError on Python 3.x · 39ea1cb7
      Denis Bilenko authored
       Traceback (most recent call last):
          File "C:\projects\gevent\greentest\greentest.py", line 213, in wrapped
            return method(self, *args, **kwargs)
          File "C:\projects\gevent\greentest\greentest.py", line 202, in wrapped
            return method(self, *args, **kwargs)
          File "C:\projects\gevent\greentest\greentest.py", line 88, in wrapped
            return method(self, *args, **kwargs)
          File "C:\projects\gevent\greentest\test__server.py", line 267, in test_serve_forever
            self.assertConnectionRefused()
          File "C:\projects\gevent\greentest\test__server.py", line 114, in assertConnectionRefused
            conn = self.makefile()
          File "C:\projects\gevent\greentest\test__server.py", line 86, in makefile
            sock.connect((self.server.server_host, self.server.server_port))
          File "c:\projects\gevent\gevent\_socket3.py", line 261, in connect
            raise error(result, strerror(result))
          File "c:\projects\gevent\gevent\win32util.py", line 89, in formatError
            return self.winError(errorcode)[1]
        TypeError: 'OSError' object is not subscriptable
      39ea1cb7
    • Denis Bilenko's avatar
      socket on Windows: do not provide socketpair · 2e313e9b
      Denis Bilenko authored
      to fix this exception:
      
        Traceback (most recent call last):
          File "test__local.py", line 4, in <module>
            from gevent import monkey; monkey.patch_all()
          File "c:\projects\gevent\gevent\monkey.py", line 369, in patch_all
            patch_socket(dns=dns, aggressive=aggressive)
          File "c:\projects\gevent\gevent\monkey.py", line 276, in patch_socket
            patch_module('socket', items=items)
          File "c:\projects\gevent\gevent\monkey.py", line 102, in patch_module
            patch_item(module, attr, getattr(gevent_module, attr))
        AttributeError: 'module' object has no attribute 'socketpair'
      2e313e9b
  5. 24 Jul, 2015 3 commits
  6. 21 Jul, 2015 3 commits
  7. 20 Jul, 2015 7 commits
  8. 17 Jul, 2015 6 commits