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
89e3ee0c
Kaydet (Commit)
89e3ee0c
authored
Nis 26, 2002
tarafından
Neil Schemenauer
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
If Py_OptimizeFlag is false then always evaluate assert conditions, don't
test __debug__ at runtime. Closes SF patch #548833.
üst
93646981
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
15 deletions
+11
-15
NEWS
Misc/NEWS
+4
-0
compile.c
Python/compile.c
+7
-15
No files found.
Misc/NEWS
Dosyayı görüntüle @
89e3ee0c
...
...
@@ -6,6 +6,10 @@ Type/class unification and new-style classes
Core and builtins
- The assert statement no longer tests __debug__ at runtime. This means
that assert statements cannot be disabled by assigning a false value
to __debug__.
- A method zfill() was added to str and unicode, that fills a numeric
string to the left with zeros. For example,
"+123".zfill(6) -> "+00123".
...
...
Python/compile.c
Dosyayı görüntüle @
89e3ee0c
...
...
@@ -2664,27 +2664,20 @@ com_expr_stmt(struct compiling *c, node *n)
static
void
com_assert_stmt
(
struct
compiling
*
c
,
node
*
n
)
{
int
a
=
0
,
b
=
0
;
int
a
=
0
;
int
i
;
REQ
(
n
,
assert_stmt
);
/* 'assert' test [',' test] */
/* Generate code like for
if
(
Py_OptimizeFlag
)
return
;
/* Generate code like
if __debug__:
if not <test>:
if not <test>:
raise AssertionError [, <message>]
where <message> is the second test, if present.
*/
if
(
Py_OptimizeFlag
)
return
;
com_addop_name
(
c
,
LOAD_GLOBAL
,
"__debug__"
);
com_push
(
c
,
1
);
com_addfwref
(
c
,
JUMP_IF_FALSE
,
&
a
);
com_addbyte
(
c
,
POP_TOP
);
com_pop
(
c
,
1
);
com_node
(
c
,
CHILD
(
n
,
1
));
com_addfwref
(
c
,
JUMP_IF_TRUE
,
&
b
);
com_addfwref
(
c
,
JUMP_IF_TRUE
,
&
a
);
com_addbyte
(
c
,
POP_TOP
);
com_pop
(
c
,
1
);
/* Raise that exception! */
...
...
@@ -2696,9 +2689,8 @@ com_assert_stmt(struct compiling *c, node *n)
com_addoparg
(
c
,
RAISE_VARARGS
,
i
);
com_pop
(
c
,
i
);
/* The interpreter does not fall through */
/*
All jumps converge
here */
/*
Jump ends up
here */
com_backpatch
(
c
,
a
);
com_backpatch
(
c
,
b
);
com_addbyte
(
c
,
POP_TOP
);
}
...
...
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