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
e0c446bb
Kaydet (Commit)
e0c446bb
authored
Eki 18, 2001
tarafından
Tim Peters
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Whitespace normalization.
üst
8a57f000
Show whitespace changes
Inline
Side-by-side
Showing
18 changed files
with
1 addition
and
8 deletions
+1
-8
ConfigParser.py
Lib/ConfigParser.py
+0
-0
__init__.py
Lib/compiler/__init__.py
+0
-1
ast.py
Lib/compiler/ast.py
+0
-0
future.py
Lib/compiler/future.py
+0
-1
misc.py
Lib/compiler/misc.py
+0
-1
pyassem.py
Lib/compiler/pyassem.py
+0
-0
pycodegen.py
Lib/compiler/pycodegen.py
+0
-0
symbols.py
Lib/compiler/symbols.py
+0
-0
transformer.py
Lib/compiler/transformer.py
+0
-0
visitor.py
Lib/compiler/visitor.py
+0
-0
pickletester.py
Lib/test/pickletester.py
+0
-0
regrtest.py
Lib/test/regrtest.py
+0
-0
test_binascii.py
Lib/test/test_binascii.py
+0
-1
test_cpickle.py
Lib/test/test_cpickle.py
+0
-0
test_email.py
Lib/test/test_email.py
+1
-1
test_os.py
Lib/test/test_os.py
+0
-0
test_pickle.py
Lib/test/test_pickle.py
+0
-0
test_socket_ssl.py
Lib/test/test_socket_ssl.py
+0
-3
No files found.
Lib/ConfigParser.py
Dosyayı görüntüle @
e0c446bb
Lib/compiler/__init__.py
Dosyayı görüntüle @
e0c446bb
...
...
@@ -24,4 +24,3 @@ compileFile(filename)
from
transformer
import
parse
,
parseFile
from
visitor
import
walk
from
pycodegen
import
compile
,
compileFile
Lib/compiler/ast.py
Dosyayı görüntüle @
e0c446bb
Lib/compiler/future.py
Dosyayı görüntüle @
e0c446bb
...
...
@@ -70,4 +70,3 @@ if __name__ == "__main__":
walk
(
tree
,
v
)
print
v
.
found
print
Lib/compiler/misc.py
Dosyayı görüntüle @
e0c446bb
...
...
@@ -72,4 +72,3 @@ def set_filename(filename, tree):
node
=
worklist
.
pop
(
0
)
node
.
filename
=
filename
worklist
.
extend
(
node
.
getChildNodes
())
Lib/compiler/pyassem.py
Dosyayı görüntüle @
e0c446bb
Lib/compiler/pycodegen.py
Dosyayı görüntüle @
e0c446bb
Lib/compiler/symbols.py
Dosyayı görüntüle @
e0c446bb
Lib/compiler/transformer.py
Dosyayı görüntüle @
e0c446bb
Lib/compiler/visitor.py
Dosyayı görüntüle @
e0c446bb
Lib/test/pickletester.py
Dosyayı görüntüle @
e0c446bb
Lib/test/regrtest.py
Dosyayı görüntüle @
e0c446bb
Lib/test/test_binascii.py
Dosyayı görüntüle @
e0c446bb
...
...
@@ -113,4 +113,3 @@ else:
# Verify the treatment of Unicode strings
verify
(
binascii
.
hexlify
(
u'a'
)
==
'61'
,
"hexlify failed for Unicode"
)
Lib/test/test_cpickle.py
Dosyayı görüntüle @
e0c446bb
Lib/test/test_email.py
Dosyayı görüntüle @
e0c446bb
...
...
@@ -291,7 +291,7 @@ class TestLongHeaders(unittest.TestCase):
self
.
assertEqual
(
sfp
.
getvalue
(),
"""
\
From: test@dom.ain
References: <0@dom.ain> <1@dom.ain> <2@dom.ain> <3@dom.ain> <4@dom.ain>
<5@dom.ain> <6@dom.ain> <7@dom.ain> <8@dom.ain> <9@dom.ain>
\t
<5@dom.ain> <6@dom.ain> <7@dom.ain> <8@dom.ain> <9@dom.ain>
Test"""
)
...
...
Lib/test/test_os.py
Dosyayı görüntüle @
e0c446bb
Lib/test/test_pickle.py
Dosyayı görüntüle @
e0c446bb
Lib/test/test_socket_ssl.py
Dosyayı görüntüle @
e0c446bb
...
...
@@ -25,6 +25,3 @@ socket.RAND_add("this is a random string", 75.0)
f
=
urllib
.
urlopen
(
'https://sf.net'
)
buf
=
f
.
read
()
f
.
close
()
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