Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
cpython
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
Batuhan Osman TASKAYA
cpython
Commits
486a0451
Kaydet (Commit)
486a0451
authored
May 06, 2012
tarafından
Nadeem Vawda
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Fix buildbot failures in test_lzma.
üst
bc459bb4
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
7 deletions
+6
-7
_lzmamodule.c
Modules/_lzmamodule.c
+6
-7
No files found.
Modules/_lzmamodule.c
Dosyayı görüntüle @
486a0451
...
...
@@ -404,17 +404,16 @@ build_filter_spec(const lzma_filter *f)
ADD_FIELD
(
f
,
id
);
switch
(
f
->
id
)
{
case
LZMA_FILTER_LZMA1
:
case
LZMA_FILTER_LZMA2
:
{
/* For LZMA1 filters, lzma_properties_{encode,decode}() only look at the
lc, lp, pb, and dict_size fields. For LZMA2 filters, only the
dict_size field is used. */
case
LZMA_FILTER_LZMA1
:
{
lzma_options_lzma
*
options
=
f
->
options
;
ADD_FIELD
(
options
,
dict_size
);
ADD_FIELD
(
options
,
lc
);
ADD_FIELD
(
options
,
lp
);
ADD_FIELD
(
options
,
pb
);
ADD_FIELD
(
options
,
mode
);
ADD_FIELD
(
options
,
nice_len
);
ADD_FIELD
(
options
,
mf
);
ADD_FIELD
(
options
,
depth
);
case
LZMA_FILTER_LZMA2
:
ADD_FIELD
(
options
,
dict_size
);
break
;
}
case
LZMA_FILTER_DELTA
:
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment