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
03d90149
Kaydet (Commit)
03d90149
authored
Ock 25, 2001
tarafından
Skip Montanaro
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
added a few more __all__ lists
test___all__.py: fail silently in check_all if the module can't be imported
üst
438bb947
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
16 additions
and
8 deletions
+16
-8
mimetools.py
Lib/mimetools.py
+2
-0
mimetypes.py
Lib/mimetypes.py
+2
-0
mimify.py
Lib/mimify.py
+2
-0
test___all__.py
Lib/test/test___all__.py
+10
-8
No files found.
Lib/mimetools.py
Dosyayı görüntüle @
03d90149
...
...
@@ -5,6 +5,8 @@ import os
import
rfc822
import
tempfile
__all__
=
[
"Message"
,
"choose_boundary"
,
"encode"
,
"decode"
,
"copyliteral"
,
"copybinary"
]
class
Message
(
rfc822
.
Message
):
"""A derived class of rfc822.Message that knows about MIME headers and
...
...
Lib/mimetypes.py
Dosyayı görüntüle @
03d90149
...
...
@@ -27,6 +27,8 @@ import string
import
posixpath
import
urllib
__all__
=
[
"guess_type"
,
"guess_extension"
,
"read_mime_types"
,
"init"
]
knownfiles
=
[
"/usr/local/etc/httpd/conf/mime.types"
,
"/usr/local/lib/netscape/mime.types"
,
...
...
Lib/mimify.py
Dosyayı görüntüle @
03d90149
...
...
@@ -29,6 +29,8 @@ QUOTE = '> ' # string replies are quoted with
import
re
,
string
__all__
=
[
"mimify"
,
"unmimify"
,
"mime_encode_header"
,
"mime_decode_header"
]
qp
=
re
.
compile
(
'^content-transfer-encoding:
\\
s*quoted-printable'
,
re
.
I
)
base64_re
=
re
.
compile
(
'^content-transfer-encoding:
\\
s*base64'
,
re
.
I
)
mp
=
re
.
compile
(
'^content-type:.*multipart/.*boundary="?([^;"
\n
]*)'
,
re
.
I
|
re
.
S
)
...
...
Lib/test/test___all__.py
Dosyayı görüntüle @
03d90149
...
...
@@ -3,7 +3,12 @@ import sys
def
check_all
(
modname
):
names
=
{}
exec
"import
%
s"
%
modname
in
names
try
:
exec
"import
%
s"
%
modname
in
names
except
ImportError
:
# silent fail here seems the best route since some modules
# may not be available in all environments
return
verify
(
hasattr
(
sys
.
modules
[
modname
],
"__all__"
),
"
%
s has no __all__ attribute"
%
modname
)
names
=
{}
...
...
@@ -48,13 +53,7 @@ check_all("commands")
check_all
(
"compileall"
)
check_all
(
"copy"
)
check_all
(
"copy_reg"
)
try
:
import
bsddb
except
ImportError
:
if
verbose
:
print
"can't import bsddb, so skipping dbhash"
else
:
check_all
(
"dbhash"
)
check_all
(
"dbhash"
)
check_all
(
"dircache"
)
check_all
(
"dis"
)
check_all
(
"doctest"
)
...
...
@@ -85,4 +84,7 @@ check_all("macpath")
check_all
(
"macurl2path"
)
check_all
(
"mailbox"
)
check_all
(
"mhlib"
)
check_all
(
"mimetools"
)
check_all
(
"mimetypes"
)
check_all
(
"mimify"
)
check_all
(
"robotparser"
)
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