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
669454e9
Kaydet (Commit)
669454e9
authored
Mar 07, 2003
tarafından
Tim Peters
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Whitespace normalization.
üst
bf7e2413
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
44 additions
and
44 deletions
+44
-44
transformer.py
Lib/compiler/transformer.py
+1
-1
dis.py
Lib/dis.py
+39
-39
test_plistlib.py
Lib/test/test_plistlib.py
+2
-2
test_ucn.py
Lib/test/test_ucn.py
+1
-1
test_unicodedata.py
Lib/test/test_unicodedata.py
+1
-1
No files found.
Lib/compiler/transformer.py
Dosyayı görüntüle @
669454e9
...
...
@@ -142,7 +142,7 @@ class Transformer:
self
.
encoding
=
node
[
2
]
node
=
node
[
1
]
n
=
node
[
0
]
if
n
==
symbol
.
single_input
:
return
self
.
single_input
(
node
[
1
:])
if
n
==
symbol
.
file_input
:
...
...
Lib/dis.py
Dosyayı görüntüle @
669454e9
...
...
@@ -131,45 +131,45 @@ def disassemble(co, lasti=-1):
def
disassemble_string
(
code
,
lasti
=-
1
,
varnames
=
None
,
names
=
None
,
constants
=
None
):
labels
=
findlabels
(
code
)
n
=
len
(
code
)
i
=
0
while
i
<
n
:
c
=
code
[
i
]
op
=
ord
(
c
)
if
op
==
opmap
[
'SET_LINENO'
]
and
i
>
0
:
print
# Extra blank line
if
i
==
lasti
:
print
'-->'
,
else
:
print
' '
,
if
i
in
labels
:
print
'>>'
,
else
:
print
' '
,
print
`i`
.
rjust
(
4
),
print
opname
[
op
]
.
ljust
(
15
),
i
=
i
+
1
if
op
>=
HAVE_ARGUMENT
:
oparg
=
ord
(
code
[
i
])
+
ord
(
code
[
i
+
1
])
*
256
i
=
i
+
2
print
`oparg`
.
rjust
(
5
),
if
op
in
hasconst
:
if
constants
:
print
'('
+
`constants[oparg]`
+
')'
,
else
:
print
'(
%
d)'
%
oparg
,
elif
op
in
hasname
:
if
names
is
not
None
:
print
'('
+
names
[
oparg
]
+
')'
,
else
:
print
'(
%
d)'
%
oparg
,
elif
op
in
hasjrel
:
print
'(to '
+
`i + oparg`
+
')'
,
elif
op
in
haslocal
:
if
varnames
:
print
'('
+
varnames
[
oparg
]
+
')'
,
else
:
print
'(
%
d)'
%
oparg
,
elif
op
in
hascompare
:
print
'('
+
cmp_op
[
oparg
]
+
')'
,
print
labels
=
findlabels
(
code
)
n
=
len
(
code
)
i
=
0
while
i
<
n
:
c
=
code
[
i
]
op
=
ord
(
c
)
if
op
==
opmap
[
'SET_LINENO'
]
and
i
>
0
:
print
# Extra blank line
if
i
==
lasti
:
print
'-->'
,
else
:
print
' '
,
if
i
in
labels
:
print
'>>'
,
else
:
print
' '
,
print
`i`
.
rjust
(
4
),
print
opname
[
op
]
.
ljust
(
15
),
i
=
i
+
1
if
op
>=
HAVE_ARGUMENT
:
oparg
=
ord
(
code
[
i
])
+
ord
(
code
[
i
+
1
])
*
256
i
=
i
+
2
print
`oparg`
.
rjust
(
5
),
if
op
in
hasconst
:
if
constants
:
print
'('
+
`constants[oparg]`
+
')'
,
else
:
print
'(
%
d)'
%
oparg
,
elif
op
in
hasname
:
if
names
is
not
None
:
print
'('
+
names
[
oparg
]
+
')'
,
else
:
print
'(
%
d)'
%
oparg
,
elif
op
in
hasjrel
:
print
'(to '
+
`i + oparg`
+
')'
,
elif
op
in
haslocal
:
if
varnames
:
print
'('
+
varnames
[
oparg
]
+
')'
,
else
:
print
'(
%
d)'
%
oparg
,
elif
op
in
hascompare
:
print
'('
+
cmp_op
[
oparg
]
+
')'
,
print
disco
=
disassemble
# XXX For backwards compatibility
...
...
Lib/test/test_plistlib.py
Dosyayı görüntüle @
669454e9
...
...
@@ -37,7 +37,7 @@ class TestPlistlib(unittest.TestCase):
else
:
pl
[
'aDate'
]
=
plistlib
.
Date
(
time
.
mktime
(
time
.
gmtime
()))
return
pl
def
test_create
(
self
):
pl
=
self
.
_create
()
self
.
assertEqual
(
pl
[
"aString"
],
"Doodah"
)
...
...
@@ -47,7 +47,7 @@ class TestPlistlib(unittest.TestCase):
pl
=
self
.
_create
()
pl
.
write
(
test_support
.
TESTFN
)
pl2
=
plistlib
.
Plist
.
fromFile
(
test_support
.
TESTFN
)
self
.
assertEqual
(
dict
(
pl
),
dict
(
pl2
))
self
.
assertEqual
(
dict
(
pl
),
dict
(
pl2
))
...
...
Lib/test/test_ucn.py
Dosyayı görüntüle @
669454e9
...
...
@@ -15,7 +15,7 @@ class UnicodeNamesTest(unittest.TestCase):
def
checkletter
(
self
,
name
,
code
):
# Helper that put all \N escapes inside eval'd raw strings,
# to make sure this script runs even if the compiler
# to make sure this script runs even if the compiler
# chokes on \N escapes
res
=
eval
(
ur'u"\N{
%
s}"'
%
name
)
self
.
assertEqual
(
res
,
code
)
...
...
Lib/test/test_unicodedata.py
Dosyayı görüntüle @
669454e9
...
...
@@ -191,7 +191,7 @@ class UnicodeMiscTest(UnicodeDatabaseTest):
def
test_digit_numeric_consistent
(
self
):
# Test that digit and numeric are consistent,
# i.e. if a character has a digit value,
# i.e. if a character has a digit value,
# it's numeric value should be the same.
count
=
0
for
i
in
xrange
(
0x10000
):
...
...
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