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
b2f94730
Kaydet (Commit)
b2f94730
authored
Haz 14, 2019
tarafından
Jeroen Demeyer
Kaydeden (comit)
Inada Naoki
Haz 14, 2019
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
bpo-37249: add declaration of _PyObject_GetMethod (GH-14015)
üst
05f83186
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
7 deletions
+3
-7
object.h
Include/cpython/object.h
+3
-0
call.c
Objects/call.c
+0
-3
ceval.c
Python/ceval.c
+0
-4
No files found.
Include/cpython/object.h
Dosyayı görüntüle @
b2f94730
...
...
@@ -318,6 +318,9 @@ PyAPI_FUNC(int) _PyObject_HasAttrId(PyObject *, struct _Py_Identifier *);
*/
PyAPI_FUNC
(
int
)
_PyObject_LookupAttr
(
PyObject
*
,
PyObject
*
,
PyObject
**
);
PyAPI_FUNC
(
int
)
_PyObject_LookupAttrId
(
PyObject
*
,
struct
_Py_Identifier
*
,
PyObject
**
);
PyAPI_FUNC
(
int
)
_PyObject_GetMethod
(
PyObject
*
obj
,
PyObject
*
name
,
PyObject
**
method
);
PyAPI_FUNC
(
PyObject
**
)
_PyObject_GetDictPtr
(
PyObject
*
);
PyAPI_FUNC
(
PyObject
*
)
_PyObject_NextNotImplemented
(
PyObject
*
);
PyAPI_FUNC
(
void
)
PyObject_CallFinalizer
(
PyObject
*
);
...
...
Objects/call.c
Dosyayı görüntüle @
b2f94730
...
...
@@ -1211,9 +1211,6 @@ object_vacall(PyObject *base, PyObject *callable, va_list vargs)
}
/* Private API for the LOAD_METHOD opcode. */
extern
int
_PyObject_GetMethod
(
PyObject
*
,
PyObject
*
,
PyObject
**
);
PyObject
*
PyObject_CallMethodObjArgs
(
PyObject
*
obj
,
PyObject
*
name
,
...)
{
...
...
Python/ceval.c
Dosyayı görüntüle @
b2f94730
...
...
@@ -38,10 +38,6 @@
# error "ceval.c must be build with Py_BUILD_CORE define for best performance"
#endif
/* Private API for the LOAD_METHOD opcode. */
extern
int
_PyObject_GetMethod
(
PyObject
*
,
PyObject
*
,
PyObject
**
);
typedef
PyObject
*
(
*
callproc
)(
PyObject
*
,
PyObject
*
,
PyObject
*
);
/* Forward declarations */
Py_LOCAL_INLINE
(
PyObject
*
)
call_function
(
...
...
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