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
c9713874
Kaydet (Commit)
c9713874
authored
Ock 24, 2003
tarafından
Jack Jansen
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Updated the doc strings to refer to PyArg_Parse and Py_BuildValue in stead
of getargs() and mkvalue().
üst
8bb5ad2e
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
4 deletions
+7
-4
bgenType.py
Tools/bgen/bgen/bgenType.py
+7
-4
No files found.
Tools/bgen/bgen/bgenType.py
Dosyayı görüntüle @
c9713874
...
...
@@ -30,14 +30,15 @@ class Type:
return
self
.
getargsFormat
(),
self
.
getargsArgs
()
def
getargsFormat
(
self
):
"""Return the format for this type for use with
[new]getargs
().
"""Return the format for this type for use with
PyArg_Parse
().
Example: int.getargsFormat() returns the string "i".
(getargs is a very old name for PyArg_Parse, hence the name of this method).
"""
return
self
.
fmt
def
getargsArgs
(
self
,
name
):
"""Return an argument for use with
[new]getargs
().
"""Return an argument for use with
PyArg_Parse
().
Example: int.getargsArgs("spam") returns the string "&spam".
"""
...
...
@@ -79,15 +80,17 @@ class Type:
return
self
.
mkvalueFormat
(),
self
.
mkvalueArgs
()
def
mkvalueFormat
(
self
):
"""Return the format for this type for use with
mkv
alue().
"""Return the format for this type for use with
Py_BuildV
alue().
This is normally the same as getargsFormat() but it is
a separate function to allow future divergence.
(mkvalue is a very old name for Py_BuildValue, hence the name of this
method).
"""
return
self
.
getargsFormat
()
def
mkvalueArgs
(
self
,
name
):
"""Return an argument for use with
mkv
alue().
"""Return an argument for use with
Py_BuildV
alue().
Example: int.mkvalueArgs("spam") returns the string "spam".
"""
...
...
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