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
e4418609
Kaydet (Commit)
e4418609
authored
Şub 16, 2002
tarafından
Tim Peters
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Whitespace normalization.
üst
20882dd1
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
10 additions
and
10 deletions
+10
-10
pycodegen.py
Lib/compiler/pycodegen.py
+1
-1
dumbdbm.py
Lib/dumbdbm.py
+1
-1
ftplib.py
Lib/ftplib.py
+7
-7
test_StringIO.py
Lib/test/test_StringIO.py
+1
-1
No files found.
Lib/compiler/pycodegen.py
Dosyayı görüntüle @
e4418609
...
...
@@ -1187,7 +1187,7 @@ class InteractiveCodeGenerator(NestedScopeMixin, CodeGenerator):
def
get_module
(
self
):
return
self
def
visitDiscard
(
self
,
node
):
# XXX Discard means it's an expression. Perhaps this is a bad
# name.
...
...
Lib/dumbdbm.py
Dosyayı görüntüle @
e4418609
...
...
@@ -150,7 +150,7 @@ class _Database:
def
__del__
(
self
):
if
self
.
_index
is
not
None
:
self
.
_commit
()
def
open
(
file
,
flag
=
None
,
mode
=
0666
):
...
...
Lib/ftplib.py
Dosyayı görüntüle @
e4418609
...
...
@@ -351,13 +351,13 @@ class FTP:
if
not
passwd
:
passwd
=
''
if
not
acct
:
acct
=
''
if
user
==
'anonymous'
and
passwd
in
(
''
,
'-'
):
# If there is no anonymous ftp password specified
# then we'll just use anonymous@
# We don't send any other thing because:
# - We want to remain anonymous
# - We want to stop SPAM
# - We don't want to let ftp sites to discriminate by the user,
# host or country.
# If there is no anonymous ftp password specified
# then we'll just use anonymous@
# We don't send any other thing because:
# - We want to remain anonymous
# - We want to stop SPAM
# - We don't want to let ftp sites to discriminate by the user,
# host or country.
passwd
=
passwd
+
'anonymous@'
resp
=
self
.
sendcmd
(
'USER '
+
user
)
if
resp
[
0
]
==
'3'
:
resp
=
self
.
sendcmd
(
'PASS '
+
passwd
)
...
...
Lib/test/test_StringIO.py
Dosyayı görüntüle @
e4418609
...
...
@@ -76,7 +76,7 @@ class TestStringIO(TestGenericStringIO):
# The StringIO module also supports concatenating Unicode
# snippets to larger Unicode strings. This is tested by this
# method. Note that cStringIO does not support this extension.
f
=
self
.
MODULE
.
StringIO
()
f
.
write
(
self
.
_line
[:
6
])
f
.
seek
(
3
)
...
...
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