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
fcc6c68e
Kaydet (Commit)
fcc6c68e
authored
Nis 03, 1998
tarafından
Fred Drake
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Export MPZType -- the type of mpz objects....
üst
61885924
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
1 deletion
+9
-1
mpzmodule.c
Modules/mpzmodule.c
+9
-1
No files found.
Modules/mpzmodule.c
Dosyayı görüntüle @
fcc6c68e
...
...
@@ -1825,12 +1825,15 @@ void mp_free( ptr, size )
void
initmpz
()
{
PyObject
*
module
;
PyObject
*
dict
;
#ifdef MPZ_DEBUG
fputs
(
"initmpz() called...
\n
"
,
stderr
);
#endif
/* def MPZ_DEBUG */
mp_set_memory_functions
(
mp_allocate
,
mp_reallocate
,
mp_free
);
(
void
)
Py_InitModule
(
"mpz"
,
mpz_functions
);
module
=
Py_InitModule
(
"mpz"
,
mpz_functions
);
/* create some frequently used constants */
if
((
mpz_value_zero
=
newmpzobject
())
==
NULL
)
...
...
@@ -1845,6 +1848,11 @@ initmpz()
Py_FatalError
(
"initmpz: can't initialize mpz constants"
);
mpz_set_si
(
&
mpz_value_mone
->
mpz
,
(
long
)
-
1
);
dict
=
PyModule_GetDict
(
module
);
if
(
dict
!=
NULL
)
{
PyDict_SetItemString
(
dict
,
"MPZType"
,
(
PyObject
*
)
&
MPZtype
);
}
}
/* initmpz() */
#ifdef MAKEDUMMYINT
int
_mpz_dummy_int
;
/* XXX otherwise, we're .bss-less (DYNLOAD->Jack?) */
...
...
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