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
1633a2e3
Kaydet (Commit)
1633a2e3
authored
Eki 30, 2001
tarafından
Tim Peters
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Whitespace normalization.
üst
003047a5
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
5 additions
and
5 deletions
+5
-5
imaplib.py
Lib/imaplib.py
+1
-1
os.py
Lib/os.py
+2
-2
regrtest.py
Lib/test/regrtest.py
+1
-1
test_mimetypes.py
Lib/test/test_mimetypes.py
+1
-1
No files found.
Lib/imaplib.py
Dosyayı görüntüle @
1633a2e3
...
...
@@ -226,7 +226,7 @@ class IMAP4:
while
bytes
>
0
:
sent
=
self
.
sock
.
send
(
data
)
if
sent
==
bytes
:
break
# avoid copy
break
# avoid copy
data
=
data
[
sent
:]
bytes
=
bytes
-
sent
...
...
Lib/os.py
Dosyayı görüntüle @
1633a2e3
...
...
@@ -362,7 +362,7 @@ else:
import
UserDict
# Fake unsetenv() for Windows
# not sure about os2 and dos here but
# not sure about os2 and dos here but
# I'm guessing they are the same.
if
name
in
(
'os2'
,
'nt'
,
'dos'
):
...
...
@@ -421,7 +421,7 @@ else:
def
__delitem__
(
self
,
key
):
unsetenv
(
key
)
del
self
.
data
[
key
]
environ
=
_Environ
(
environ
)
...
...
Lib/test/regrtest.py
Dosyayı görüntüle @
1633a2e3
...
...
@@ -38,7 +38,7 @@ only the following are defined:
curses - Tests that use curses and will modify the terminal's
state and output modes.
largefile - It is okay to run some test that may create huge files. These
tests can take a long time and may consume >2GB of disk space
temporarily.
...
...
Lib/test/test_mimetypes.py
Dosyayı görüntüle @
1633a2e3
...
...
@@ -39,7 +39,7 @@ class MimeTypesTestCase(unittest.TestCase):
".pyunit"
)
def
test_non_standard_types
(
self
):
# First try strict
# First try strict
self
.
assertEqual
(
self
.
db
.
guess_type
(
'foo.xul'
,
strict
=
1
),
(
None
,
None
))
self
.
assertEqual
(
self
.
db
.
guess_extension
(
'image/jpg'
,
strict
=
1
),
...
...
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