From 3fadda2bbad10fddc055d61c417304fcaab8eff1 Mon Sep 17 00:00:00 2001 From: Thomas Kriechbaumer Date: Wed, 17 May 2017 10:33:35 +0800 Subject: fix pragmas --- pathod/protocols/http2.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'pathod') diff --git a/pathod/protocols/http2.py b/pathod/protocols/http2.py index 7c88c5c7..cfc71650 100644 --- a/pathod/protocols/http2.py +++ b/pathod/protocols/http2.py @@ -247,13 +247,13 @@ class HTTP2StateProtocol: raw_bytes = frm.serialize() self.tcp_handler.wfile.write(raw_bytes) self.tcp_handler.wfile.flush() - if not hide and self.dump_frames: # pragma no cover + if not hide and self.dump_frames: # pragma: no cover print(">> " + repr(frm)) def read_frame(self, hide=False): while True: frm = http2.parse_frame(*http2.read_raw_frame(self.tcp_handler.rfile)) - if not hide and self.dump_frames: # pragma no cover + if not hide and self.dump_frames: # pragma: no cover print("<< " + repr(frm)) if isinstance(frm, hyperframe.frame.PingFrame): @@ -337,7 +337,7 @@ class HTTP2StateProtocol: if end_stream: frms[0].flags.add('END_STREAM') - if self.dump_frames: # pragma no cover + if self.dump_frames: # pragma: no cover for frm in frms: print(">> ", repr(frm)) @@ -355,7 +355,7 @@ class HTTP2StateProtocol: data=body[i:i + chunk_size]) for i in chunks] frms[-1].flags.add('END_STREAM') - if self.dump_frames: # pragma no cover + if self.dump_frames: # pragma: no cover for frm in frms: print(">> ", repr(frm)) -- cgit v1.2.3