We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 10a5ddc commit 9581ae5Copy full SHA for 9581ae5
test/test_decoders.py
@@ -134,6 +134,12 @@ def test_create_bytes_ownership(self):
134
# later on. By the time we actually decode, the reference on the Python
135
# side has gone away, and if we don't have ownership on the C++ side, we
136
# will hit runtime errors or segfaults.
137
+ #
138
+ # Also note that if this test fails, OTHER tests will likely
139
+ # mysteriously fail. That's because a failure in this tests likely
140
+ # indicates memory corruption, and the memory we corrupt could easily
141
+ # cause problems in other tests. So if this test fails, fix this test
142
+ # first.
143
with open(NASA_VIDEO.path, "rb") as f:
144
decoder = VideoDecoder(f.read())
145
0 commit comments