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
7a7480dc
Kaydet (Commit)
7a7480dc
authored
Eki 29, 1996
tarafından
Fred Drake
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
(myformat.perl): Added handler for cfuncdesc environment. This is needed
for the extending & embedding manual.
üst
eb33c781
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
18 additions
and
0 deletions
+18
-0
myformat.perl
Doc/myformat.perl
+18
-0
No files found.
Doc/myformat.perl
Dosyayı görüntüle @
7a7480dc
...
...
@@ -150,4 +150,22 @@ sub do_cmd_bifuncindex{ &my_parword_index_helper('built-in function', @_); }
sub
do_cmd_bimodindex
{
&
my_parword_index_helper
(
'built-in module'
,
@
_
);
}
sub
do_cmd_bifuncindex
{
&
my_parword_index_helper
(
'standard module'
,
@
_
);
}
sub
do_env_cfuncdesc
{
local
($
_
)
=
@
_
;
local
($
return_type
,$
function_name
,$
arg_list
)
=
(
''
,
''
,
''
);
local
($
any_next_pair_rx3
)
=
"$O(
\\
d+)$C([
\\
s
\\
S]*)$O
\\
3$C"
;
local
($
cfuncdesc_rx
)
=
"$any_next_pair_rx$any_next_pair_rx3$any_next_pair_rx5"
;
$*
=
1
;
if
(/$
cfuncdesc_rx
/
o
)
{
$
return_type
=
"$2"
;
$
function_name
=
"$4"
;
$
arg_list
=
"$6"
;
&
make_index_entry
($
3
,$
function_name
)
}
$*
=
0
;
"<DL><DT>$return_type <STRONG><A NAME=
\"
$3
\"
>$function_name</A></STRONG>"
.
"(<VAR>$arg_list</VAR>)
\n
<DD>$'
\n
</DL>"
}
1
;
#
This
must
be
the
last
line
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