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
bf9ac4bd
Kaydet (Commit)
bf9ac4bd
authored
Agu 13, 2004
tarafından
Tim Peters
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Whitespace normalization.
üst
41a65ea7
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
6 deletions
+6
-6
test_funcattrs.py
Lib/test/test_funcattrs.py
+1
-1
test_new.py
Lib/test/test_new.py
+5
-5
No files found.
Lib/test/test_funcattrs.py
Dosyayı görüntüle @
bf9ac4bd
...
...
@@ -276,7 +276,7 @@ def test_func_name():
verify
(
f
.
func_name
==
"h"
)
cantset
(
f
,
"func_globals"
,
1
)
cantset
(
f
,
"__name__"
,
1
)
def
test_func_code
():
def
f
():
pass
...
...
Lib/test/test_new.py
Dosyayı görüntüle @
bf9ac4bd
...
...
@@ -100,7 +100,7 @@ print 'new.code()'
# Note: Jython will never have new.code()
if
hasattr
(
new
,
'code'
):
def
f
(
a
):
pass
c
=
f
.
func_code
argcount
=
c
.
co_argcount
nlocals
=
c
.
co_nlocals
...
...
@@ -116,16 +116,16 @@ if hasattr(new, 'code'):
lnotab
=
c
.
co_lnotab
freevars
=
c
.
co_freevars
cellvars
=
c
.
co_cellvars
d
=
new
.
code
(
argcount
,
nlocals
,
stacksize
,
flags
,
codestring
,
constants
,
names
,
varnames
,
filename
,
name
,
firstlineno
,
lnotab
,
freevars
,
cellvars
)
# test backwards-compatibility version with no freevars or cellvars
d
=
new
.
code
(
argcount
,
nlocals
,
stacksize
,
flags
,
codestring
,
constants
,
names
,
varnames
,
filename
,
name
,
firstlineno
,
lnotab
)
try
:
# this used to trigger a SystemError
d
=
new
.
code
(
-
argcount
,
nlocals
,
stacksize
,
flags
,
codestring
,
constants
,
names
,
varnames
,
filename
,
name
,
...
...
@@ -143,7 +143,7 @@ if hasattr(new, 'code'):
pass
else
:
raise
TestFailed
,
"negative co_nlocals didn't trigger an exception"
try
:
# this used to trigger a Py_FatalError!
d
=
new
.
code
(
argcount
,
nlocals
,
stacksize
,
flags
,
codestring
,
constants
,
(
5
,),
varnames
,
filename
,
name
,
...
...
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