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
2275e626
Kaydet (Commit)
2275e626
authored
Haz 20, 2016
tarafından
Martin Panter
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Fix spelling errors in code comments
üst
ce1a9f30
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
suspicious.py
Doc/tools/extensions/suspicious.py
+1
-1
abstract.c
Objects/abstract.c
+2
-2
No files found.
Doc/tools/extensions/suspicious.py
Dosyayı görüntüle @
2275e626
...
...
@@ -270,5 +270,5 @@ class SuspiciousVisitor(nodes.GenericNodeVisitor):
# ignore comments -- too much false positives.
# (although doing this could miss some errors;
# there were two sections "commented-out" by mistake
# in the Python docs that would not be ca
tched
)
# in the Python docs that would not be ca
ught
)
raise
nodes
.
SkipNode
Objects/abstract.c
Dosyayı görüntüle @
2275e626
...
...
@@ -2109,7 +2109,7 @@ _Py_CheckFunctionResult(PyObject *func, PyObject *result, const char *where)
"%s returned NULL without setting an error"
,
where
);
#ifdef Py_DEBUG
/* Ensure that the bug is ca
tched
in debug mode */
/* Ensure that the bug is ca
ught
in debug mode */
Py_FatalError
(
"a function returned NULL without setting an error"
);
#endif
return
NULL
;
...
...
@@ -2132,7 +2132,7 @@ _Py_CheckFunctionResult(PyObject *func, PyObject *result, const char *where)
where
);
_PyErr_ChainExceptions
(
exc
,
val
,
tb
);
#ifdef Py_DEBUG
/* Ensure that the bug is ca
tched
in debug mode */
/* Ensure that the bug is ca
ught
in debug mode */
Py_FatalError
(
"a function returned a result with an error set"
);
#endif
return
NULL
;
...
...
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