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
4e9da0d1
Unverified
Kaydet (Commit)
4e9da0d1
authored
Şub 03, 2018
tarafından
Eric Snow
Kaydeden (comit)
GitHub
Şub 03, 2018
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
bpo-32604: Fix memory leaks in the new _xxsubinterpreters module. (#5507)
üst
2f79c014
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
11 additions
and
8 deletions
+11
-8
test__xxsubinterpreters.py
Lib/test/test__xxsubinterpreters.py
+10
-8
_xxsubinterpretersmodule.c
Modules/_xxsubinterpretersmodule.c
+0
-0
pystate.c
Python/pystate.c
+1
-0
No files found.
Lib/test/test__xxsubinterpreters.py
Dosyayı görüntüle @
4e9da0d1
...
...
@@ -362,13 +362,15 @@ class DestroyTests(TestBase):
def
test_from_current
(
self
):
main
,
=
interpreters
.
list_all
()
id
=
interpreters
.
create
()
script
=
dedent
(
"""
script
=
dedent
(
f
"""
import _xxsubinterpreters as _interpreters
_interpreters.destroy({})
"""
)
.
format
(
id
)
try:
_interpreters.destroy({id})
except RuntimeError:
pass
"""
)
with
self
.
assertRaises
(
RuntimeError
):
interpreters
.
run_string
(
id
,
script
)
interpreters
.
run_string
(
id
,
script
)
self
.
assertEqual
(
set
(
interpreters
.
list_all
()),
{
main
,
id
})
def
test_from_sibling
(
self
):
...
...
@@ -761,12 +763,12 @@ class ChannelIDTests(TestBase):
self
.
assertEqual
(
int
(
cid
),
10
)
def
test_bad_id
(
self
):
ids
=
[
-
1
,
2
**
64
,
"spam"
]
for
cid
in
ids
:
for
cid
in
[
-
1
,
'spam'
]:
with
self
.
subTest
(
cid
):
with
self
.
assertRaises
(
ValueError
):
interpreters
.
_channel_id
(
cid
)
with
self
.
assertRaises
(
OverflowError
):
interpreters
.
_channel_id
(
2
**
64
)
with
self
.
assertRaises
(
TypeError
):
interpreters
.
_channel_id
(
object
())
...
...
Modules/_xxsubinterpretersmodule.c
Dosyayı görüntüle @
4e9da0d1
This diff is collapsed.
Click to expand it.
Python/pystate.c
Dosyayı görüntüle @
4e9da0d1
...
...
@@ -1242,6 +1242,7 @@ _PyCrossInterpreterData_Lookup(PyObject *obj)
break
;
}
}
Py_DECREF
(
cls
);
PyThread_release_lock
(
_PyRuntime
.
xidregistry
.
mutex
);
return
getdata
;
}
...
...
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