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
860c8a40
Kaydet (Commit)
860c8a40
authored
Eki 29, 2015
tarafından
Benjamin Peterson
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Sade Fark
merge 3.5 (#25502)
üst
2e0e18ba
669ff66c
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
2 additions
and
7 deletions
+2
-7
getpass.py
Lib/getpass.py
+1
-1
pickletools.py
Lib/pickletools.py
+1
-1
smtplib.py
Lib/smtplib.py
+0
-2
testpy.py
PC/testpy.py
+0
-2
asdl_c.py
Parser/asdl_c.py
+0
-1
No files found.
Lib/getpass.py
Dosyayı görüntüle @
860c8a40
...
@@ -99,7 +99,7 @@ def win_getpass(prompt='Password: ', stream=None):
...
@@ -99,7 +99,7 @@ def win_getpass(prompt='Password: ', stream=None):
"""Prompt for password with echo off, using Windows getch()."""
"""Prompt for password with echo off, using Windows getch()."""
if
sys
.
stdin
is
not
sys
.
__stdin__
:
if
sys
.
stdin
is
not
sys
.
__stdin__
:
return
fallback_getpass
(
prompt
,
stream
)
return
fallback_getpass
(
prompt
,
stream
)
import
msvcrt
for
c
in
prompt
:
for
c
in
prompt
:
msvcrt
.
putwch
(
c
)
msvcrt
.
putwch
(
c
)
pw
=
""
pw
=
""
...
...
Lib/pickletools.py
Dosyayı görüntüle @
860c8a40
...
@@ -2794,7 +2794,7 @@ def _test():
...
@@ -2794,7 +2794,7 @@ def _test():
return
doctest
.
testmod
()
return
doctest
.
testmod
()
if
__name__
==
"__main__"
:
if
__name__
==
"__main__"
:
import
sys
,
argparse
import
argparse
parser
=
argparse
.
ArgumentParser
(
parser
=
argparse
.
ArgumentParser
(
description
=
'disassemble one or more pickle files'
)
description
=
'disassemble one or more pickle files'
)
parser
.
add_argument
(
parser
.
add_argument
(
...
...
Lib/smtplib.py
Dosyayı görüntüle @
860c8a40
...
@@ -1080,8 +1080,6 @@ class LMTP(SMTP):
...
@@ -1080,8 +1080,6 @@ class LMTP(SMTP):
# Test the sendmail method, which tests most of the others.
# Test the sendmail method, which tests most of the others.
# Note: This always sends to localhost.
# Note: This always sends to localhost.
if
__name__
==
'__main__'
:
if
__name__
==
'__main__'
:
import
sys
def
prompt
(
prompt
):
def
prompt
(
prompt
):
sys
.
stdout
.
write
(
prompt
+
": "
)
sys
.
stdout
.
write
(
prompt
+
": "
)
sys
.
stdout
.
flush
()
sys
.
stdout
.
flush
()
...
...
PC/testpy.py
Dosyayı görüntüle @
860c8a40
...
@@ -18,8 +18,6 @@ except:
...
@@ -18,8 +18,6 @@ except:
a PC, you should add the dos_8x3 directory to your PYTHONPATH."""
)
a PC, you should add the dos_8x3 directory to your PYTHONPATH."""
)
sys
.
exit
(
1
)
sys
.
exit
(
1
)
import
os
for
dir
in
sys
.
path
:
for
dir
in
sys
.
path
:
file
=
os
.
path
.
join
(
dir
,
"os.py"
)
file
=
os
.
path
.
join
(
dir
,
"os.py"
)
if
os
.
path
.
isfile
(
file
):
if
os
.
path
.
isfile
(
file
):
...
...
Parser/asdl_c.py
Dosyayı görüntüle @
860c8a40
...
@@ -1289,7 +1289,6 @@ def main(srcfile, dump_module=False):
...
@@ -1289,7 +1289,6 @@ def main(srcfile, dump_module=False):
f
.
close
()
f
.
close
()
if
__name__
==
"__main__"
:
if
__name__
==
"__main__"
:
import
sys
import
getopt
import
getopt
INC_DIR
=
''
INC_DIR
=
''
...
...
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