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
22aa6447
Kaydet (Commit)
22aa6447
authored
Şub 06, 2001
tarafından
Andrew M. Kuchling
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Patch #103523, to make mpz module compile with Cygwin
üst
3cbdbfbf
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletion
+2
-1
mpzmodule.c
Modules/mpzmodule.c
+2
-1
No files found.
Modules/mpzmodule.c
Dosyayı görüntüle @
22aa6447
...
@@ -1584,7 +1584,7 @@ static PyNumberMethods mpz_as_number = {
...
@@ -1584,7 +1584,7 @@ static PyNumberMethods mpz_as_number = {
};
};
static
PyTypeObject
MPZtype
=
{
static
PyTypeObject
MPZtype
=
{
PyObject_HEAD_INIT
(
&
PyType_Type
)
PyObject_HEAD_INIT
(
NULL
)
0
,
/*ob_size*/
0
,
/*ob_size*/
"mpz"
,
/*tp_name*/
"mpz"
,
/*tp_name*/
sizeof
(
mpzobject
),
/*tp_size*/
sizeof
(
mpzobject
),
/*tp_size*/
...
@@ -1716,6 +1716,7 @@ initmpz(void)
...
@@ -1716,6 +1716,7 @@ initmpz(void)
#endif
/* def MPZ_DEBUG */
#endif
/* def MPZ_DEBUG */
mp_set_memory_functions
(
mp_allocate
,
mp_reallocate
,
mp_free
);
mp_set_memory_functions
(
mp_allocate
,
mp_reallocate
,
mp_free
);
MPZtype
.
ob_type
=
&
PyType_Type
;
module
=
Py_InitModule
(
"mpz"
,
mpz_functions
);
module
=
Py_InitModule
(
"mpz"
,
mpz_functions
);
/* create some frequently used constants */
/* create some frequently used constants */
...
...
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