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
4e542a3d
Kaydet (Commit)
4e542a3d
authored
Haz 30, 2000
tarafından
Jeremy Hylton
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
replace constant 1 with symbolic constant METH_VARARGS
another typo caught by Rob Hooft
üst
9262b8ab
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
9 deletions
+9
-9
exceptions.c
Python/exceptions.c
+9
-9
No files found.
Python/exceptions.c
Dosyayı görüntüle @
4e542a3d
...
...
@@ -189,7 +189,7 @@ static PyObject* get_self(PyObject* args)
*
* First thing we create is the base class for all exceptions, called
* appropriately enough: Exception. Creation of this class makes no
* assumptions about the exist
a
nce of any other exception class -- except
* assumptions about the exist
e
nce of any other exception class -- except
* for TypeError, which can conditionally exist.
*
* Next, StandardError is created (which is quite simple) followed by
...
...
@@ -282,9 +282,9 @@ Exception__getitem__(PyObject* self, PyObject* args)
static
PyMethodDef
Exception_methods
[]
=
{
/* methods for the Exception class */
{
"__getitem__"
,
Exception__getitem__
,
1
},
{
"__str__"
,
Exception__str__
,
1
},
{
"__init__"
,
Exception__init__
,
1
},
{
"__getitem__"
,
Exception__getitem__
,
METH_VARARGS
},
{
"__str__"
,
Exception__str__
,
METH_VARARGS
},
{
"__init__"
,
Exception__init__
,
METH_VARARGS
},
{
NULL
,
NULL
}
};
...
...
@@ -396,7 +396,7 @@ SystemExit__init__(PyObject* self, PyObject* args)
PyMethodDef
SystemExit_methods
[]
=
{
{
"__init__"
,
SystemExit__init__
,
1
},
{
"__init__"
,
SystemExit__init__
,
METH_VARARGS
},
{
NULL
,
NULL
}
};
...
...
@@ -576,8 +576,8 @@ EnvironmentError__str__(PyObject* self, PyObject* args)
static
PyMethodDef
EnvironmentError_methods
[]
=
{
{
"__init__"
,
EnvironmentError__init__
,
1
},
{
"__str__"
,
EnvironmentError__str__
,
1
},
{
"__init__"
,
EnvironmentError__init__
,
METH_VARARGS
},
{
"__str__"
,
EnvironmentError__str__
,
METH_VARARGS
},
{
NULL
,
NULL
}
};
...
...
@@ -726,8 +726,8 @@ SyntaxError__str__(PyObject* self, PyObject* args)
PyMethodDef
SyntaxError_methods
[]
=
{
{
"__init__"
,
SyntaxError__init__
,
1
},
{
"__str__"
,
SyntaxError__str__
,
1
},
{
"__init__"
,
SyntaxError__init__
,
METH_VARARGS
},
{
"__str__"
,
SyntaxError__str__
,
METH_VARARGS
},
{
NULL
,
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