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
17ab123c
Kaydet (Commit)
17ab123c
authored
Ock 24, 2001
tarafından
Skip Montanaro
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
a few more modules get __all__
üst
bbd89b66
Hide whitespace changes
Inline
Side-by-side
Showing
11 changed files
with
31 additions
and
0 deletions
+31
-0
imghdr.py
Lib/imghdr.py
+1
-0
imputil.py
Lib/imputil.py
+2
-0
keyword.py
Lib/keyword.py
+2
-0
linecache.py
Lib/linecache.py
+2
-0
locale.py
Lib/locale.py
+5
-0
macpath.py
Lib/macpath.py
+4
-0
macurl2path.py
Lib/macurl2path.py
+2
-0
mailbox.py
Lib/mailbox.py
+2
-0
mailcap.py
Lib/mailcap.py
+1
-0
mhlib.py
Lib/mhlib.py
+1
-0
test___all__.py
Lib/test/test___all__.py
+9
-0
No files found.
Lib/imghdr.py
Dosyayı görüntüle @
17ab123c
"""Recognize image file formats based on their first few bytes."""
"""Recognize image file formats based on their first few bytes."""
__all__
=
[
"what"
]
#-------------------------#
#-------------------------#
# Recognize image headers #
# Recognize image headers #
...
...
Lib/imputil.py
Dosyayı görüntüle @
17ab123c
...
@@ -14,6 +14,8 @@ import __builtin__
...
@@ -14,6 +14,8 @@ import __builtin__
import
struct
import
struct
import
marshal
import
marshal
__all__
=
[
"ImportManager"
,
"Importer"
,
"BuiltinImporter"
]
_StringType
=
type
(
''
)
_StringType
=
type
(
''
)
_ModuleType
=
type
(
sys
)
### doesn't work in JPython...
_ModuleType
=
type
(
sys
)
### doesn't work in JPython...
...
...
Lib/keyword.py
Dosyayı görüntüle @
17ab123c
...
@@ -10,6 +10,8 @@ the python source tree after building the interpreter and run:
...
@@ -10,6 +10,8 @@ the python source tree after building the interpreter and run:
python Lib/keyword.py
python Lib/keyword.py
"""
"""
__all__
=
[
"iskeyword"
]
kwlist
=
[
kwlist
=
[
#--start keywords--
#--start keywords--
'and'
,
'and'
,
...
...
Lib/linecache.py
Dosyayı görüntüle @
17ab123c
...
@@ -9,6 +9,8 @@ import sys
...
@@ -9,6 +9,8 @@ import sys
import
os
import
os
from
stat
import
*
from
stat
import
*
__all__
=
[
"getline"
,
"clearcache"
,
"checkcache"
]
def
getline
(
filename
,
lineno
):
def
getline
(
filename
,
lineno
):
lines
=
getlines
(
filename
)
lines
=
getlines
(
filename
)
if
1
<=
lineno
<=
len
(
lines
):
if
1
<=
lineno
<=
len
(
lines
):
...
...
Lib/locale.py
Dosyayı görüntüle @
17ab123c
...
@@ -18,6 +18,11 @@ import string, sys
...
@@ -18,6 +18,11 @@ import string, sys
# If this fails, fall back on a basic 'C' locale emulation.
# If this fails, fall back on a basic 'C' locale emulation.
#
#
__all__
=
[
"setlocale"
,
"Error"
,
"localeconv"
,
"strcoll"
,
"strxfrm"
,
"format"
,
"str"
,
"atof"
,
"atoi"
,
"LC_CTYPE"
,
"LC_COLLATE"
,
"LC_TIME"
,
"LC_MONETARY"
,
"LC_NUMERIC"
,
"LC_MESSAGES"
,
"LC_ALL"
,
"CHAR_MAX"
]
try
:
try
:
from
_locale
import
*
from
_locale
import
*
...
...
Lib/macpath.py
Dosyayı görüntüle @
17ab123c
...
@@ -3,6 +3,10 @@
...
@@ -3,6 +3,10 @@
import
os
import
os
from
stat
import
*
from
stat
import
*
__all__
=
[
"normcase"
,
"isabs"
,
"join"
,
"splitdrive"
,
"split"
,
"splitext"
,
"basename"
,
"dirname"
,
"commonprefix"
,
"getsize"
,
"getmtime"
,
"getatime"
,
"islink"
,
"exists"
,
"isdir"
,
"isfile"
,
"walk"
,
"expanduser"
,
"expandvars"
,
"normpath"
,
"abspath"
]
# Normalize the case of a pathname. Dummy in Posix, but <s>.lower() here.
# Normalize the case of a pathname. Dummy in Posix, but <s>.lower() here.
...
...
Lib/macurl2path.py
Dosyayı görüntüle @
17ab123c
...
@@ -6,6 +6,8 @@ import string
...
@@ -6,6 +6,8 @@ import string
import
urllib
import
urllib
import
os
import
os
__all__
=
[
"url2pathname"
,
"pathname2url"
]
def
url2pathname
(
pathname
):
def
url2pathname
(
pathname
):
"Convert /-delimited pathname to mac pathname"
"Convert /-delimited pathname to mac pathname"
#
#
...
...
Lib/mailbox.py
Dosyayı görüntüle @
17ab123c
...
@@ -6,6 +6,8 @@
...
@@ -6,6 +6,8 @@
import
rfc822
import
rfc822
import
os
import
os
__all__
=
[
"UnixMailbox"
,
"MmdfMailbox"
,
"MHMailbox"
,
"Maildir"
,
"BabylMailbox"
]
class
_Mailbox
:
class
_Mailbox
:
def
__init__
(
self
,
fp
):
def
__init__
(
self
,
fp
):
self
.
fp
=
fp
self
.
fp
=
fp
...
...
Lib/mailcap.py
Dosyayı görüntüle @
17ab123c
...
@@ -3,6 +3,7 @@
...
@@ -3,6 +3,7 @@
import
os
import
os
import
string
import
string
__all__
=
[
"getcaps"
,
"findmatch"
]
# Part 1: top-level interface.
# Part 1: top-level interface.
...
...
Lib/mhlib.py
Dosyayı görüntüle @
17ab123c
...
@@ -82,6 +82,7 @@ import multifile
...
@@ -82,6 +82,7 @@ import multifile
import
shutil
import
shutil
from
bisect
import
bisect
from
bisect
import
bisect
__all__
=
[
"MH"
,
"Error"
,
"Folder"
,
"Message"
]
# Exported constants
# Exported constants
...
...
Lib/test/test___all__.py
Dosyayı görüntüle @
17ab123c
...
@@ -76,4 +76,13 @@ check_all("htmllib")
...
@@ -76,4 +76,13 @@ check_all("htmllib")
check_all
(
"httplib"
)
check_all
(
"httplib"
)
check_all
(
"ihooks"
)
check_all
(
"ihooks"
)
check_all
(
"imaplib"
)
check_all
(
"imaplib"
)
check_all
(
"imghdr"
)
check_all
(
"imputil"
)
check_all
(
"keyword"
)
check_all
(
"linecache"
)
check_all
(
"locale"
)
check_all
(
"macpath"
)
check_all
(
"macurl2path"
)
check_all
(
"mailbox"
)
check_all
(
"mhlib"
)
check_all
(
"robotparser"
)
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