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
cee555bd
Kaydet (Commit)
cee555bd
authored
Agu 01, 1996
tarafından
Guido van Rossum
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Allow compilation by K&R C compiler.
üst
42dcad36
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
8 deletions
+8
-8
cobject.c
Objects/cobject.c
+8
-8
No files found.
Objects/cobject.c
Dosyayı görüntüle @
cee555bd
...
...
@@ -32,13 +32,13 @@ OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
typedef
struct
{
PyObject_HEAD
void
*
cobject
;
void
(
*
destructor
)
(
void
*
);
void
(
*
destructor
)
Py_PROTO
((
void
*
)
);
}
PyCObject
;
PyObject
*
PyCObject_FromVoidPtr
(
cobj
,
destr
)
void
*
cobj
;
void
(
*
destr
)
(
void
*
);
void
(
*
destr
)
Py_PROTO
((
void
*
)
);
{
PyCObject
*
self
;
...
...
@@ -66,12 +66,12 @@ PyCObject_dealloc(self)
}
static
char
PyCObject_Type__doc__
[]
=
"C objects to be exported from one extension module to another
\n
"
"
\n
"
"C objects are used for communication between extension modules. They
\n
"
"provide a way for an extension module to export a C interface to other
\n
"
"extension modules, so that extension modules can use the Python import
\n
"
"
mechanism to link to one another.
\n
"
"C objects to be exported from one extension module to another
\n
\
\n
\
C objects are used for communication between extension modules. They
\n
\
provide a way for an extension module to export a C interface to other
\n
\
extension modules, so that extension modules can use the Python import
\n
\
mechanism to link to one another.
\n
"
;
PyTypeObject
PyCObject_Type
=
{
...
...
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