An error occurred fetching the project authors.
  1. 08 Nov, 2018 1 commit
  2. 06 Nov, 2018 2 commits
  3. 31 Oct, 2018 1 commit
  4. 18 Oct, 2018 2 commits
  5. 16 Oct, 2018 5 commits
    • Jason Madden's avatar
      Wordsmithing CHANGES and iwait docstring. · b23342ce
      Jason Madden authored
      b23342ce
    • Josh Snyder's avatar
      Add documentation and CHANGES · b56a30d7
      Josh Snyder authored
      b56a30d7
    • Jason Madden's avatar
      Update to Cython 0.29 · 29122a6a
      Jason Madden authored
      And stop the warnings about missing language_level.
      29122a6a
    • Josh Snyder's avatar
      Changes requested in review · 105259ee
      Josh Snyder authored
      New test, which fails without the previous commit:
      
          ERROR: test_wait_noiter (__main__.TestWaiting)
          ----------------------------------------------------------------------
          Traceback (most recent call last):
            File "/home/vagrant/gevent/src/greentest/greentest/leakcheck.py", line 200, in wrapper
              return _RefCountChecker(self, method)(args, kwargs)
            File "/home/vagrant/gevent/src/greentest/greentest/leakcheck.py", line 184, in __call__
              self._run_test(args, kwargs)
            File "/home/vagrant/gevent/src/greentest/greentest/leakcheck.py", line 109, in _run_test
              self.function(self.testcase, *args, **kwargs)
            File "/home/vagrant/gevent/src/greentest/greentest/errorhandler.py", line 48, in wrapper
              return method(self, *args, **kwargs)
            File "/home/vagrant/gevent/src/greentest/greentest/errorhandler.py", line 35, in wrapper
              return method(self, *args, **kwargs)
            File "/home/vagrant/gevent/src/greentest/greentest/testcase.py", line 63, in wrapper
              return method(self, *args, **kwargs)
            File "src/greentest/test__wait.py", line 12, in test_wait_noiter
              ready = next(gevent.iwait((sem1, sem2)))
            File "src/gevent/_hub_primitives.py", line 149, in gevent.__hub_primitives._WaitIterator.__next__
              raise
            File "src/gevent/_hub_primitives.py", line 140, in gevent.__hub_primitives._WaitIterator.__next__
              item = self._waiter.get()
            File "src/gevent/_waiter.py", line 192, in gevent.__waiter.MultipleWaiter.get
              Waiter.get(self)
            File "src/gevent/_waiter.py", line 151, in gevent.__waiter.Waiter.get
              return self.hub.switch()
            File "src/gevent/_greenlet_primitives.py", line 59, in gevent.__greenlet_primitives.SwitchOutGreenletWithLoop.switch
              def switch(self):
            File "src/gevent/_greenlet_primitives.py", line 59, in gevent.__greenlet_primitives.SwitchOutGreenletWithLoop.switch
              def switch(self):
            File "src/gevent/_greenlet_primitives.py", line 63, in gevent.__greenlet_primitives.SwitchOutGreenletWithLoop.switch
              return _greenlet_switch(self) # pylint:disable=undefined-variable
            File "src/gevent/__greenlet_primitives.pxd", line 35, in gevent.__greenlet_primitives._greenlet_switch
              return PyGreenlet_Switch(self, NULL, NULL)
          LoopExit: This operation would block forever
              Hub: <QuietHub '' at 0x7fc8fce60520 epoll default pending=0 ref=0 fileno=3 thread_ident=0x7fc8fffbe700>
              Handles:
          []
      105259ee
    • Jason Madden's avatar
      Add changenote for #1289. · 15b88bc6
      Jason Madden authored
      15b88bc6
  6. 12 Oct, 2018 2 commits
  7. 11 Oct, 2018 2 commits
  8. 13 Sep, 2018 2 commits
  9. 08 Sep, 2018 1 commit
  10. 17 Aug, 2018 2 commits
  11. 06 Aug, 2018 1 commit
  12. 18 Jul, 2018 1 commit
  13. 16 Jul, 2018 2 commits
  14. 12 Jul, 2018 6 commits
  15. 20 Jun, 2018 2 commits
  16. 18 Jun, 2018 1 commit
    • Jason Madden's avatar
      Add change note. · fcbdd238
      Jason Madden authored
      travis seems to be stuck building a missing commit, hopefully this frees it.
      fcbdd238
  17. 16 Jun, 2018 1 commit
  18. 15 Jun, 2018 1 commit
  19. 08 Jun, 2018 2 commits
  20. 07 Jun, 2018 1 commit
  21. 02 Jun, 2018 1 commit
  22. 31 May, 2018 1 commit
    • Jason Madden's avatar
      Sleeping updates the loop's current time always. (#1228) · 40959196
      Jason Madden authored
      * Sleeping updates the loop's current time always.
      
      That had been disabled for libuv, but now that we run timers in our own code that's not a concern anymore.
      
      Fixes #1227.
      
      * Try Python 3.5.5 because of the weird Illegal Instruction crash we suddenly see with 3.5.4
      
      * Increase the value; test_sendall_timeout was often failing to actually timeout.
      
      * Really python3.5
      40959196