From 555878e511cd983b785d2570936819dcf0f0f590 Mon Sep 17 00:00:00 2001 From: Ethan Dalool Date: Fri, 20 Nov 2020 01:53:52 -0800 Subject: [PATCH] Add COMPRESSION_STORE, _MAX constants. --- rarpar.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/rarpar.py b/rarpar.py index 859e097..a465441 100644 --- a/rarpar.py +++ b/rarpar.py @@ -18,6 +18,9 @@ PAR2 = winwhich.which('phpar2') RESERVE_SPACE_ON_DRIVE = 30 * bytestring.GIBIBYTE +COMPRESSION_STORE = 0 +COMPRESSION_MAX = 5 + class RarParException(Exception): pass