Commit 412d59d0 authored by Jason Madden's avatar Jason Madden

Hmm, why is test__core giving fits on py38/libuv/travis? Can't reproduce locally.

parent 0a45f740
...@@ -11,6 +11,7 @@ environment: ...@@ -11,6 +11,7 @@ environment:
# too often we get failures to resolve DNS names or failures # too often we get failures to resolve DNS names or failures
# to connect on AppVeyor. # to connect on AppVeyor.
GEVENTTEST_USE_RESOURCES: "-network" GEVENTTEST_USE_RESOURCES: "-network"
PYTHONTRACEMALLOC: 10
matrix: matrix:
......
...@@ -157,7 +157,9 @@ static void gevent_uv_walk_callback_close(uv_handle_t* handle, void* arg) ...@@ -157,7 +157,9 @@ static void gevent_uv_walk_callback_close(uv_handle_t* handle, void* arg)
static void gevent_close_all_handles(uv_loop_t* loop) static void gevent_close_all_handles(uv_loop_t* loop)
{ {
if (loop) {
uv_walk(loop, gevent_uv_walk_callback_close, NULL); uv_walk(loop, gevent_uv_walk_callback_close, NULL);
}
} }
static void gevent_zero_timer(uv_timer_t* handle) static void gevent_zero_timer(uv_timer_t* handle)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment