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
2b938f84
Kaydet (Commit)
2b938f84
authored
Ock 07, 2017
tarafından
Stefan Krah
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Revert (unauthorized) parts of 54a89144ee1d which are not in a speed-sensitive
path in order to avoid maintenance issues.
üst
1b5fa6b7
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
_decimal.c
Modules/_decimal/_decimal.c
+4
-4
No files found.
Modules/_decimal/_decimal.c
Dosyayı görüntüle @
2b938f84
...
@@ -5835,7 +5835,7 @@ PyInit__decimal(void)
...
@@ -5835,7 +5835,7 @@ PyInit__decimal(void)
/* Init default context template first */
/* Init default context template first */
ASSIGN_PTR
(
default_context_template
,
ASSIGN_PTR
(
default_context_template
,
_PyObject_CallNoArg
((
PyObject
*
)
&
PyDecContext_Type
));
PyObject_CallObject
((
PyObject
*
)
&
PyDecContext_Type
,
NULL
));
Py_INCREF
(
default_context_template
);
Py_INCREF
(
default_context_template
);
CHECK_INT
(
PyModule_AddObject
(
m
,
"DefaultContext"
,
CHECK_INT
(
PyModule_AddObject
(
m
,
"DefaultContext"
,
default_context_template
));
default_context_template
));
...
@@ -5843,7 +5843,7 @@ PyInit__decimal(void)
...
@@ -5843,7 +5843,7 @@ PyInit__decimal(void)
#ifdef WITHOUT_THREADS
#ifdef WITHOUT_THREADS
/* Init module context */
/* Init module context */
ASSIGN_PTR
(
module_context
,
ASSIGN_PTR
(
module_context
,
_PyObject_CallNoArg
((
PyObject
*
)
&
PyDecContext_Type
));
PyObject_CallObject
((
PyObject
*
)
&
PyDecContext_Type
,
NULL
));
Py_INCREF
(
Py_False
);
Py_INCREF
(
Py_False
);
CHECK_INT
(
PyModule_AddObject
(
m
,
"HAVE_THREADS"
,
Py_False
));
CHECK_INT
(
PyModule_AddObject
(
m
,
"HAVE_THREADS"
,
Py_False
));
#else
#else
...
@@ -5854,7 +5854,7 @@ PyInit__decimal(void)
...
@@ -5854,7 +5854,7 @@ PyInit__decimal(void)
/* Init basic context template */
/* Init basic context template */
ASSIGN_PTR
(
basic_context_template
,
ASSIGN_PTR
(
basic_context_template
,
_PyObject_CallNoArg
((
PyObject
*
)
&
PyDecContext_Type
));
PyObject_CallObject
((
PyObject
*
)
&
PyDecContext_Type
,
NULL
));
init_basic_context
(
basic_context_template
);
init_basic_context
(
basic_context_template
);
Py_INCREF
(
basic_context_template
);
Py_INCREF
(
basic_context_template
);
CHECK_INT
(
PyModule_AddObject
(
m
,
"BasicContext"
,
CHECK_INT
(
PyModule_AddObject
(
m
,
"BasicContext"
,
...
@@ -5862,7 +5862,7 @@ PyInit__decimal(void)
...
@@ -5862,7 +5862,7 @@ PyInit__decimal(void)
/* Init extended context template */
/* Init extended context template */
ASSIGN_PTR
(
extended_context_template
,
ASSIGN_PTR
(
extended_context_template
,
_PyObject_CallNoArg
((
PyObject
*
)
&
PyDecContext_Type
));
PyObject_CallObject
((
PyObject
*
)
&
PyDecContext_Type
,
NULL
));
init_extended_context
(
extended_context_template
);
init_extended_context
(
extended_context_template
);
Py_INCREF
(
extended_context_template
);
Py_INCREF
(
extended_context_template
);
CHECK_INT
(
PyModule_AddObject
(
m
,
"ExtendedContext"
,
CHECK_INT
(
PyModule_AddObject
(
m
,
"ExtendedContext"
,
...
...
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