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
615b49b0
Kaydet (Commit)
615b49b0
authored
Nis 06, 2007
tarafından
Andrew M. Kuchling
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Some grammar fixes
üst
9405609c
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
5 deletions
+5
-5
libctypes.tex
Doc/lib/libctypes.tex
+5
-5
No files found.
Doc/lib/libctypes.tex
Dosyayı görüntüle @
615b49b0
...
...
@@ -7,21 +7,21 @@
\versionadded
{
2.5
}
\code
{
ctypes
}
is a foreign function library for Python. It provides C
compatible data types, and allows
to call
functions in dlls/shared
compatible data types, and allows
calling
functions in dlls/shared
libraries. It can be used to wrap these libraries in pure Python.
\subsection
{
ctypes tutorial
\label
{
ctypes-ctypes-tutorial
}}
Note: The code samples in this tutorial use
s
\code
{
doctest
}
to make sure
Note: The code samples in this tutorial use
\code
{
doctest
}
to make sure
that they actually work. Since some code samples behave differently
under Linux, Windows, or Mac OS X, they contain doctest directives in
comments.
Note:
Quite some code samples
references the ctypes
\class
{
c
{
\_
}
int
}
type.
Note:
Some code sample
references the ctypes
\class
{
c
{
\_
}
int
}
type.
This type is an alias to the
\class
{
c
{
\_
}
long
}
type on 32-bit systems. So,
you should not be confused if
\class
{
c
{
\_
}
long
}
is printed if you would
expect
\class
{
c
{
\_
}
int
}
- they are actually the same type.
expect
\class
{
c
{
\_
}
int
}
-
--
they are actually the same type.
\subsubsection
{
Loading dynamic link libraries
\label
{
ctypes-loading-dynamic-link-libraries
}}
...
...
@@ -38,7 +38,7 @@ return a Windows \class{HRESULT} error code. The error code is used to
automatically raise
\class
{
WindowsError
}
Python exceptions when the
function call fails.
Here are some examples for Windows
, n
ote that
\code
{
msvcrt
}
is the MS
Here are some examples for Windows
. N
ote that
\code
{
msvcrt
}
is the MS
standard C library containing most standard C functions, and uses the
cdecl calling convention:
\begin{verbatim}
...
...
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