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
503e50b0
Kaydet (Commit)
503e50b0
authored
May 28, 1996
tarafından
Guido van Rossum
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
capitalize H3 headers; add 'cgi.' prefix to example code
üst
ce84920e
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
cgi.py
Lib/cgi.py
+4
-4
No files found.
Lib/cgi.py
Dosyayı görüntüle @
503e50b0
...
...
@@ -66,7 +66,7 @@ dictionary. For instance, the following code (which assumes that the
Content-type header and blank line have already been printed) checks that
the fields "name" and "addr" are both set to a non-empty string:
form = FieldStorage()
form =
cgi.
FieldStorage()
form_ok = 0
if form.has_key("name") and form.has_key("addr"):
if form["name"].value != "" and form["addr"].value != "":
...
...
@@ -1054,7 +1054,7 @@ def print_environ():
keys
=
environ
.
keys
()
keys
.
sort
()
print
print
"<H3>Shell
e
nvironment:</H3>"
print
"<H3>Shell
E
nvironment:</H3>"
print
"<DL>"
for
key
in
keys
:
print
"<DT>"
,
escape
(
key
),
"<DD>"
,
escape
(
environ
[
key
])
...
...
@@ -1066,7 +1066,7 @@ def print_form(form):
keys
=
form
.
keys
()
keys
.
sort
()
print
print
"<H3>Form
c
ontents:</H3>"
print
"<H3>Form
C
ontents:</H3>"
print
"<DL>"
for
key
in
keys
:
print
"<DT>"
+
escape
(
key
)
+
":"
,
...
...
@@ -1090,7 +1090,7 @@ def print_directory():
def
print_arguments
():
print
print
"<H3>Command
l
ine Arguments:</H3>"
print
"<H3>Command
L
ine Arguments:</H3>"
print
print
sys
.
argv
print
...
...
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