Python: Add new test

This commit is contained in:
Taus
2025-12-10 13:52:13 +00:00
parent 6af9fd816f
commit d2c7147480
2 changed files with 11 additions and 5 deletions

View File

@@ -49,11 +49,11 @@ async def bomb(file_path):
gzip.open(file_path) # $ result=BAD
gzip.GzipFile(file_path) # $ result=BAD
# from compression import zstd
#
# zstd.open(file_path) # $ result=BAD
# zstd.ZstdFile(file_path).read() # $ result=BAD
#
from compression import zstd
zstd.open(file_path) # $ result=BAD
zstd.ZstdFile(file_path).read() # $ result=BAD
import pandas
pandas.read_csv(filepath_or_buffer=file_path) # $ result=BAD