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
3538a310
Kaydet (Commit)
3538a310
authored
Ara 15, 2008
tarafından
Amaury Forgeot d'Arc
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
#3632: the "pyo" macro from gdbinit can now run when the GIL is released.
Patch by haypo.
üst
31949b91
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
0 deletions
+6
-0
NEWS
Misc/NEWS
+3
-0
object.c
Objects/object.c
+3
-0
No files found.
Misc/NEWS
Dosyayı görüntüle @
3538a310
...
...
@@ -185,6 +185,9 @@ Build
C-API
-----
- Issue #3632: from the gdb debugger, the 'pyo' macro can now be called when
the GIL is released, or owned by another thread.
- Issue #4122: On Windows, fix a compilation error when using the
Py_UNICODE_ISSPACE macro in an extension module.
...
...
Objects/object.c
Dosyayı görüntüle @
3538a310
...
...
@@ -331,8 +331,11 @@ void _PyObject_Dump(PyObject* op)
if
(
op
==
NULL
)
fprintf
(
stderr
,
"NULL
\n
"
);
else
{
PyGILState_STATE
gil
;
fprintf
(
stderr
,
"object : "
);
gil
=
PyGILState_Ensure
();
(
void
)
PyObject_Print
(
op
,
stderr
,
0
);
PyGILState_Release
(
gil
);
/* XXX(twouters) cast refcount to long until %zd is
universally available */
fprintf
(
stderr
,
"
\n
"
...
...
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