We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ac90d8b commit 07af970Copy full SHA for 07af970
uvloop/loop.pyx
@@ -2419,7 +2419,7 @@ cdef class Loop:
2419
try:
2420
await waiter
2421
except Exception:
2422
- transport.close()
+ transport._close()
2423
raise
2424
2425
if ssl:
@@ -2553,7 +2553,7 @@ cdef class Loop:
2553
transp._init_protocol()
2554
2555
2556
- transp.close()
+ transp._close()
2557
2558
transp._attach_fileobj(pipe)
2559
return transp, proto
@@ -2578,7 +2578,7 @@ cdef class Loop:
2578
2579
2580
2581
2582
2583
2584
0 commit comments