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
f23e0fe3
Kaydet (Commit)
f23e0fe3
authored
Mar 18, 1995
tarafından
Guido van Rossum
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
micro change
üst
7e9394ab
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
12 additions
and
12 deletions
+12
-12
ext.tex
Doc/ext.tex
+5
-5
ext.tex
Doc/ext/ext.tex
+5
-5
libposixfile.tex
Doc/lib/libposixfile.tex
+1
-1
libposixfile.tex
Doc/libposixfile.tex
+1
-1
No files found.
Doc/ext.tex
Dosyayı görüntüle @
f23e0fe3
...
...
@@ -838,7 +838,7 @@ Examples (to the left the call, to the right the resulting Python value):
\begin{verbatim}
Py
_
BuildValue("") None
Py
_
BuildValue("i", 123) 123
Py
_
BuildValue("ii
", 123, 456) (123, 456
)
Py
_
BuildValue("ii
i", 123, 456, 789) (123, 456, 789
)
Py
_
BuildValue("s", "hello") 'hello'
Py
_
BuildValue("ss", "hello", "world") ('hello', 'world')
Py
_
BuildValue("s#", "hello", 4) 'hell'
...
...
@@ -847,10 +847,10 @@ Examples (to the left the call, to the right the resulting Python value):
Py
_
BuildValue("(ii)", 123, 456) (123, 456)
Py
_
BuildValue("(i,i)", 123, 456) (123, 456)
Py
_
BuildValue("[i,i]", 123, 456) [123, 456]
Py
_
BuildValue("
{
s:i,s:i
}
",
"abc", 123, "def", 456)
{
'abc': 123, 'def': 456
}
Py
_
BuildValue("((ii)(ii)) (ii)",
1, 2, 3, 4, 5, 6)
(((1, 2), (3, 4)), (5, 6))
Py
_
BuildValue("
{
s:i,s:i
}
",
"abc", 123, "def", 456)
{
'abc': 123, 'def': 456
}
Py
_
BuildValue("((ii)(ii)) (ii)",
1, 2, 3, 4, 5, 6)
(((1, 2), (3, 4)), (5, 6))
\end{verbatim}
...
...
Doc/ext/ext.tex
Dosyayı görüntüle @
f23e0fe3
...
...
@@ -838,7 +838,7 @@ Examples (to the left the call, to the right the resulting Python value):
\begin{verbatim}
Py
_
BuildValue("") None
Py
_
BuildValue("i", 123) 123
Py
_
BuildValue("ii
", 123, 456) (123, 456
)
Py
_
BuildValue("ii
i", 123, 456, 789) (123, 456, 789
)
Py
_
BuildValue("s", "hello") 'hello'
Py
_
BuildValue("ss", "hello", "world") ('hello', 'world')
Py
_
BuildValue("s#", "hello", 4) 'hell'
...
...
@@ -847,10 +847,10 @@ Examples (to the left the call, to the right the resulting Python value):
Py
_
BuildValue("(ii)", 123, 456) (123, 456)
Py
_
BuildValue("(i,i)", 123, 456) (123, 456)
Py
_
BuildValue("[i,i]", 123, 456) [123, 456]
Py
_
BuildValue("
{
s:i,s:i
}
",
"abc", 123, "def", 456)
{
'abc': 123, 'def': 456
}
Py
_
BuildValue("((ii)(ii)) (ii)",
1, 2, 3, 4, 5, 6)
(((1, 2), (3, 4)), (5, 6))
Py
_
BuildValue("
{
s:i,s:i
}
",
"abc", 123, "def", 456)
{
'abc': 123, 'def': 456
}
Py
_
BuildValue("((ii)(ii)) (ii)",
1, 2, 3, 4, 5, 6)
(((1, 2), (3, 4)), (5, 6))
\end{verbatim}
...
...
Doc/lib/libposixfile.tex
Dosyayı görüntüle @
f23e0fe3
...
...
@@ -37,7 +37,7 @@ The posixfile module defines the following functions:
\begin{funcdesc}
{
open
}{
filename
\optional
{
\,
mode
\optional
{
\,
bufsize
}}}
Create a new posixfile object with the given filename and mode. The
\var
{
filename
}
,
\var
{
mode
}
and
\var
{
bufsize
}
arguments are
interpreted the same way as by the
\code
{
open()
}
builtin
function.
interpreted the same way as by the
built-in
\code
{
open()
}
function.
\end{funcdesc}
\begin{funcdesc}
{
fileopen
}{
fileobject
}
...
...
Doc/libposixfile.tex
Dosyayı görüntüle @
f23e0fe3
...
...
@@ -37,7 +37,7 @@ The posixfile module defines the following functions:
\begin{funcdesc}
{
open
}{
filename
\optional
{
\,
mode
\optional
{
\,
bufsize
}}}
Create a new posixfile object with the given filename and mode. The
\var
{
filename
}
,
\var
{
mode
}
and
\var
{
bufsize
}
arguments are
interpreted the same way as by the
\code
{
open()
}
builtin
function.
interpreted the same way as by the
built-in
\code
{
open()
}
function.
\end{funcdesc}
\begin{funcdesc}
{
fileopen
}{
fileobject
}
...
...
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