1. 30 Apr, 2014 2 commits
  2. 29 Apr, 2014 23 commits
    • Denis Bilenko's avatar
      remove test_support.py · b3a327e0
      Denis Bilenko authored
      b3a327e0
    • Denis Bilenko's avatar
      greentest.py: do gc.collect() x 3 · a7614de7
      Denis Bilenko authored
      a7614de7
    • Denis Bilenko's avatar
      test__threadpool.py: increase expected kill.elapsed · 71365114
      Denis Bilenko authored
      To prevent this:
      
      ======================================================================
      FAIL: test_terminate (__main__.TestPool10)
      ----------------------------------------------------------------------
      
      Traceback (most recent call last):
      
      File "test__threadpool.py", line 176, in test_terminate
      
      assert kill.elapsed < 0.5, kill.elapsed
      
      AssertionError: 0.564028263092041
      71365114
    • Denis Bilenko's avatar
      be925b1a
    • Denis Bilenko's avatar
      disable test_urllib2net.OtherNetworkTest.test_ftp · 06c0f922
      Denis Bilenko authored
      too slow
      06c0f922
    • Denis Bilenko's avatar
      core.ppyx: enable check watchers · 2d756386
      Denis Bilenko authored
      2d756386
    • Denis Bilenko's avatar
      dfbba53b
    • Denis Bilenko's avatar
      util.py: remove unused variable SLEEP · 2363fdc0
      Denis Bilenko authored
      2363fdc0
    • Denis Bilenko's avatar
      Event: add dummy _reset_internal_locks · 8de5b088
      Denis Bilenko authored
      8de5b088
    • Denis Bilenko's avatar
      fix #423: pool: LoopExit in imap/imap_unordered · ecc86013
      Denis Bilenko authored
      It was possible for IMap/IMapUnordered greenlets to exit without putting the final StopIteration. So, whoever was waiting on the results would have to wait forever (or until LoopExit if there's nothing else running in the program).
      
      Original patch and test by @thinxer (close #424).
      
      Fix #311: same issue.
      ecc86013
    • Denis Bilenko's avatar
    • Alexey Borzenkov's avatar
      Port gevent vfd to win64 · 57810ff5
      Alexey Borzenkov authored
      Since long on win64 is 32-bit it cannot hold all possible
      SOCKET handle values, making it theoretically possible to
      get an exception "OverflowError: Python int too large to
      convert to C long" if socket handles become too big. Now
      on win64 it properly uses PY_LONG_LONG.
      57810ff5
    • Tomek Święcicki's avatar
      afe11a2e
    • Denis Bilenko's avatar
      upgrade libev to 4.15 · 03858326
      Denis Bilenko authored
      This should fix #361.
      03858326
    • Denis Bilenko's avatar
      fix syntax of xtest_signal.py on python2.6 · f4fbd522
      Denis Bilenko authored
      f4fbd522
    • Fantix King's avatar
      00e30625
    • Denis Bilenko's avatar
      os.py: do not import gevent.socket · 8e305d27
      Denis Bilenko authored
      since gevent.os is imported in __init__.py this makes gevent.socket imported in __init__.py which was never the intention.
      8e305d27
    • Denis Bilenko's avatar
      disable tests in test_httpserver failing on 2.6 · 5281f9d4
      Denis Bilenko authored
      only on travis:
      
      test_authorization (__main__.CGIHTTPServerTestCase) ... Traceback (most recent call last):
          File "/usr/lib/python2.6/CGIHTTPServer.py", line 255, in run_cgi
            os.execve(scriptfile, args, os.environ)
        OSError: [Errno 13] Permission denied
        FAIL
        test_headers_and_content (__main__.CGIHTTPServerTestCase) ... Traceback (most recent call last):
          File "/usr/lib/python2.6/CGIHTTPServer.py", line 255, in run_cgi
            os.execve(scriptfile, args, os.environ)
        OSError: [Errno 13] Permission denied
        FAIL
        test_invaliduri (__main__.CGIHTTPServerTestCase) ... ok
        test_post (__main__.CGIHTTPServerTestCase) ... Traceback (most recent call last):
          File "/usr/lib/python2.6/CGIHTTPServer.py", line 255, in run_cgi
            os.execve(scriptfile, args, os.environ)
        OSError: [Errno 13] Permission denied
        FAIL
      
        ======================================================================
        FAIL: test_get (__main__.SimpleHTTPServerTestCase)
        ----------------------------------------------------------------------
        Traceback (most recent call last):
          File "test_httpservers.py", line 242, in test_get
          File "test_httpservers.py", line 218, in check_status_and_reason
        AssertionError: 200 != 404
      
        ======================================================================
        FAIL: test_authorization (__main__.CGIHTTPServerTestCase)
        ----------------------------------------------------------------------
        Traceback (most recent call last):
          File "test_httpservers.py", line 349, in test_authorization
        AssertionError: ('Hello World\n', 'text/html', 200) != ("Exception happened during processing of request from ('127.0.0.1', 60525)\n----------------------------------------\n", None, 200)
      
        ======================================================================
        FAIL: test_headers_and_content (__main__.CGIHTTPServerTestCase)
        ----------------------------------------------------------------------
        Traceback (most recent call last):
          File "test_httpservers.py", line 330, in test_headers_and_content
        AssertionError: ('Hello World\n', 'text/html', 200) != ("Exception happened during processing of request from ('127.0.0.1', 38970)\n----------------------------------------\n", None, 200)
      
        ======================================================================
        FAIL: test_post (__main__.CGIHTTPServerTestCase)
        ----------------------------------------------------------------------
        Traceback (most recent call last):
          File "test_httpservers.py", line 337, in test_post
        AssertionError: "Exception happened during processing of request from ('127.0.0.1', 45146)\n----------------------------------------\n" != '1, python, 123456\n'
      5281f9d4
    • Denis Bilenko's avatar
      pyflakes fixes · bade5353
      Denis Bilenko authored
      bade5353
    • Denis Bilenko's avatar
      remove unused imports · b714471f
      Denis Bilenko authored
      b714471f
    • Denis Bilenko's avatar
      e28970ae
    • Denis Bilenko's avatar
      pep8 fixes · ee3687b2
      Denis Bilenko authored
      ee3687b2
    • Denis Bilenko's avatar
      travis: known_failures: add test__issue6.py · bed51d58
      Denis Bilenko authored
      It often fails with:
      
      master ~/work/gevent $ python greentest/test__issue6.py
      Traceback (most recent call last):
        File "greentest/test__issue6.py", line 11, in <module>
          assert err == '', (out, err, code)
      AssertionError: ('11 chars.\n', 'Unhandled exception in thread started by \nsys.excepthook is missing\nlost sys.stderr\n', 0)
      bed51d58
  3. 27 Nov, 2013 1 commit
  4. 26 Nov, 2013 9 commits
  5. 25 Nov, 2013 2 commits
  6. 10 Nov, 2013 1 commit
  7. 14 Oct, 2013 1 commit
  8. 13 Oct, 2013 1 commit