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
6f9e433a
Kaydet (Commit)
6f9e433a
authored
Mar 29, 1995
tarafından
Guido van Rossum
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
fix dusty debugging macros
üst
07432c0e
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
11 additions
and
11 deletions
+11
-11
object.h
Include/object.h
+5
-5
object.c
Objects/object.c
+1
-1
stringobject.c
Objects/stringobject.c
+1
-1
tupleobject.c
Objects/tupleobject.c
+1
-1
ceval.c
Python/ceval.c
+1
-1
pythonrun.c
Python/pythonrun.c
+2
-2
No files found.
Include/object.h
Dosyayı görüntüle @
6f9e433a
...
...
@@ -306,17 +306,17 @@ extern void inc_count Py_PROTO((PyTypeObject *));
#endif
#ifdef Py_REF_DEBUG
extern
long
ref_t
otal
;
extern
long
_Py_RefT
otal
;
#ifndef Py_TRACE_REFS
#ifdef COUNT_ALLOCS
#define _Py_NewReference(op) (inc_count((op)->ob_type),
ref_t
otal++, (op)->ob_refcnt = 1)
#define _Py_NewReference(op) (inc_count((op)->ob_type),
_Py_RefT
otal++, (op)->ob_refcnt = 1)
#else
#define _Py_NewReference(op) (
ref_t
otal++, (op)->ob_refcnt = 1)
#define _Py_NewReference(op) (
_Py_RefT
otal++, (op)->ob_refcnt = 1)
#endif
#endif
#define Py_INCREF(op) (
ref_t
otal++, (op)->ob_refcnt++)
#define Py_INCREF(op) (
_Py_RefT
otal++, (op)->ob_refcnt++)
#define Py_DECREF(op) \
if (--
ref_t
otal, --(op)->ob_refcnt != 0) \
if (--
_Py_RefT
otal, --(op)->ob_refcnt != 0) \
; \
else \
_Py_Dealloc(op)
...
...
Objects/object.c
Dosyayı görüntüle @
6f9e433a
...
...
@@ -26,7 +26,7 @@ OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
#include "allobjects.h"
#if
def REF_DEBUG
#if
defined( Py_TRACE_REFS ) || defined( Py_REF_DEBUG )
long
ref_total
;
#endif
...
...
Objects/stringobject.c
Dosyayı görüntüle @
6f9e433a
...
...
@@ -508,7 +508,7 @@ resizestring(pv, newsize)
}
/* XXX UNREF/NEWREF interface should be more symmetrical */
#ifdef REF_DEBUG
--
ref_t
otal
;
--
_Py_RefT
otal
;
#endif
UNREF
(
v
);
*
pv
=
(
object
*
)
...
...
Objects/tupleobject.c
Dosyayı görüntüle @
6f9e433a
...
...
@@ -419,7 +419,7 @@ resizetuple(pv, newsize, last_is_sticky)
return
0
;
/* XXX UNREF/NEWREF interface should be more symmetrical */
#ifdef REF_DEBUG
--
ref_t
otal
;
--
_Py_RefT
otal
;
#endif
UNREF
(
v
);
if
(
last_is_sticky
&&
sizediff
<
0
)
{
...
...
Python/ceval.c
Dosyayı görüntüle @
6f9e433a
...
...
@@ -288,7 +288,7 @@ eval_code(co, globals, locals, owner, arg)
#ifdef LLTRACE
int
lltrace
;
#endif
#if
def DEBUG
#if
defined( DEBUG ) || defined( LLTRACE )
/* Make it easier to find out where we are with dbx */
char
*
filename
=
getstringvalue
(
co
->
co_filename
);
#endif
...
...
Python/pythonrun.c
Dosyayı görüntüle @
6f9e433a
...
...
@@ -155,7 +155,7 @@ run_tty_loop(fp, filename)
for
(;;)
{
ret
=
run_tty_1
(
fp
,
filename
);
#ifdef REF_DEBUG
fprintf
(
stderr
,
"[%ld refs]
\n
"
,
ref_t
otal
);
fprintf
(
stderr
,
"[%ld refs]
\n
"
,
_Py_RefT
otal
);
#endif
if
(
ret
==
E_EOF
)
return
0
;
...
...
@@ -664,7 +664,7 @@ goaway(sts)
err_clear
();
#ifdef REF_DEBUG
fprintf
(
stderr
,
"[%ld refs]
\n
"
,
ref_t
otal
);
fprintf
(
stderr
,
"[%ld refs]
\n
"
,
_Py_RefT
otal
);
#endif
#ifdef TRACE_REFS
...
...
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