We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1580fef commit 7ecab38Copy full SHA for 7ecab38
docs/conf.py
@@ -33,8 +33,16 @@ class MockCrypto:
33
HeaderProtection = None
34
35
36
-sys.modules.update({"aioquic._buffer": MockBuffer()})
37
-sys.modules.update({"aioquic._crypto": MockCrypto()})
+class MockPylsqpack:
+ Decoder = None
38
+ Encoder = None
39
+
40
41
+sys.modules.update({
42
+ "aioquic._buffer": MockBuffer(),
43
+ "aioquic._crypto": MockCrypto(),
44
+ "pylsqpack": MockPylsqpack(),
45
+})
46
47
# -- General configuration ------------------------------------------------
48
0 commit comments