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
8dc43032
Kaydet (Commit)
8dc43032
authored
Nis 28, 2008
tarafından
Brett Cannon
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Rename the test_traceback_print() function to traceback_print() to prevent
test_capi from automatically calling the function.
üst
b8bdbc04
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
5 deletions
+5
-5
test_traceback.py
Lib/test/test_traceback.py
+2
-2
_testcapimodule.c
Modules/_testcapimodule.c
+3
-3
No files found.
Lib/test/test_traceback.py
Dosyayı görüntüle @
8dc43032
"""Test cases for traceback module"""
from
_testcapi
import
t
est_t
raceback_print
from
_testcapi
import
traceback_print
from
StringIO
import
StringIO
import
sys
import
unittest
...
...
@@ -13,7 +13,7 @@ try:
except
KeyError
:
type_
,
value
,
tb
=
sys
.
exc_info
()
file_
=
StringIO
()
t
est_t
raceback_print
(
tb
,
file_
)
traceback_print
(
tb
,
file_
)
example_traceback
=
file_
.
getvalue
()
else
:
raise
Error
(
"unable to create test traceback string"
)
...
...
Modules/_testcapimodule.c
Dosyayı görüntüle @
8dc43032
...
...
@@ -736,13 +736,13 @@ test_with_docstring(PyObject *self)
/* To test the format of tracebacks as printed out. */
static
PyObject
*
t
est_t
raceback_print
(
PyObject
*
self
,
PyObject
*
args
)
traceback_print
(
PyObject
*
self
,
PyObject
*
args
)
{
PyObject
*
file
;
PyObject
*
traceback
;
int
result
;
if
(
!
PyArg_ParseTuple
(
args
,
"OO:t
est_t
raceback_print"
,
if
(
!
PyArg_ParseTuple
(
args
,
"OO:traceback_print"
,
&
traceback
,
&
file
))
return
NULL
;
...
...
@@ -792,7 +792,7 @@ static PyMethodDef TestMethods[] = {
#ifdef WITH_THREAD
{
"_test_thread_state"
,
test_thread_state
,
METH_VARARGS
},
#endif
{
"t
est_traceback_print"
,
test_
traceback_print
,
METH_VARARGS
},
{
"t
raceback_print"
,
traceback_print
,
METH_VARARGS
},
{
NULL
,
NULL
}
/* sentinel */
};
...
...
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