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
4709ec06
Kaydet (Commit)
4709ec06
authored
Şub 21, 2011
tarafından
Antoine Pitrou
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Fix compile error under MSVC introduced by r88460.
üst
c97c7376
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
zlibmodule.c
Modules/zlibmodule.c
+2
-2
No files found.
Modules/zlibmodule.c
Dosyayı görüntüle @
4709ec06
...
@@ -945,7 +945,7 @@ PyZlib_adler32(PyObject *self, PyObject *args)
...
@@ -945,7 +945,7 @@ PyZlib_adler32(PyObject *self, PyObject *args)
/* Releasing the GIL for very small buffers is inefficient
/* Releasing the GIL for very small buffers is inefficient
and may lower performance */
and may lower performance */
if
(
pbuf
.
len
>
1024
*
5
)
{
if
(
pbuf
.
len
>
1024
*
5
)
{
void
*
buf
=
pbuf
.
buf
;
unsigned
char
*
buf
=
pbuf
.
buf
;
Py_ssize_t
len
=
pbuf
.
len
;
Py_ssize_t
len
=
pbuf
.
len
;
Py_BEGIN_ALLOW_THREADS
Py_BEGIN_ALLOW_THREADS
...
@@ -983,7 +983,7 @@ PyZlib_crc32(PyObject *self, PyObject *args)
...
@@ -983,7 +983,7 @@ PyZlib_crc32(PyObject *self, PyObject *args)
/* Releasing the GIL for very small buffers is inefficient
/* Releasing the GIL for very small buffers is inefficient
and may lower performance */
and may lower performance */
if
(
pbuf
.
len
>
1024
*
5
)
{
if
(
pbuf
.
len
>
1024
*
5
)
{
void
*
buf
=
pbuf
.
buf
;
unsigned
char
*
buf
=
pbuf
.
buf
;
Py_ssize_t
len
=
pbuf
.
len
;
Py_ssize_t
len
=
pbuf
.
len
;
Py_BEGIN_ALLOW_THREADS
Py_BEGIN_ALLOW_THREADS
...
...
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