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
8fc2a340
Kaydet (Commit)
8fc2a340
authored
Kas 27, 2007
tarafından
Thomas Heller
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Remove unused global variable, and remove unneeded COMError.__str__
implementation in C.
üst
41f03929
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
15 deletions
+0
-15
_ctypes.c
Modules/_ctypes/_ctypes.c
+0
-15
No files found.
Modules/_ctypes/_ctypes.c
Dosyayı görüntüle @
8fc2a340
...
...
@@ -4751,18 +4751,6 @@ static char *module_docs =
static
char
comerror_doc
[]
=
"Raised when a COM method call failed."
;
static
PyObject
*
comerror_str
(
PyObject
*
ignored
,
PyObject
*
self
)
{
PyObject
*
args
=
PyObject_GetAttrString
(
self
,
"args"
);
PyObject
*
result
;
if
(
args
==
NULL
)
return
NULL
;
result
=
PyObject_Str
(
args
);
Py_DECREF
(
args
);
return
result
;
}
static
PyObject
*
comerror_init
(
PyObject
*
self
,
PyObject
*
args
)
{
...
...
@@ -4795,13 +4783,10 @@ comerror_init(PyObject *self, PyObject *args)
}
static
PyMethodDef
comerror_methods
[]
=
{
{
"__str__"
,
comerror_str
,
METH_O
},
{
"__init__"
,
comerror_init
,
METH_VARARGS
},
{
NULL
,
NULL
},
};
PyObject
*
COMError
;
static
int
create_comerror
(
void
)
{
...
...
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