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
196b0925
Kaydet (Commit)
196b0925
authored
Eki 15, 2009
tarafından
Benjamin Peterson
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
only clear a module's __dict__ if the module is the only one with a reference to it #7140
üst
96e319e5
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
15 additions
and
1 deletion
+15
-1
test_module.py
Lib/test/test_module.py
+8
-0
NEWS
Misc/NEWS
+3
-0
moduleobject.c
Objects/moduleobject.c
+4
-1
No files found.
Lib/test/test_module.py
Dosyayı görüntüle @
196b0925
...
...
@@ -55,6 +55,14 @@ class ModuleTests(unittest.TestCase):
{
"__name__"
:
"foo"
,
"__doc__"
:
"foodoc"
,
"bar"
:
42
})
self
.
assertTrue
(
foo
.
__dict__
is
d
)
def
test_dont_clear_dict
(
self
):
# See issue 7140.
def
f
():
foo
=
ModuleType
(
"foo"
)
foo
.
bar
=
4
return
foo
self
.
assertEqual
(
f
()
.
__dict__
[
"bar"
],
4
)
def
test_main
():
run_unittest
(
ModuleTests
)
...
...
Misc/NEWS
Dosyayı görüntüle @
196b0925
...
...
@@ -12,6 +12,9 @@ What's New in Python 2.7 alpha 1
Core and Builtins
-----------------
- Issue #7140: The __dict__ of a module should not be cleared unless the module
is the only object holding a reference to it.
- Issue #1754094: Improve the stack depth calculation in the compiler.
There should be no other effect than a small decrease in memory use.
Patch by Christopher Tur Lesniewski-Laas.
...
...
Objects/moduleobject.c
Dosyayı görüntüle @
196b0925
...
...
@@ -175,7 +175,10 @@ module_dealloc(PyModuleObject *m)
{
PyObject_GC_UnTrack
(
m
);
if
(
m
->
md_dict
!=
NULL
)
{
_PyModule_Clear
((
PyObject
*
)
m
);
/* If we are the only ones holding a reference, we can clear
the dictionary. */
if
(
Py_REFCNT
(
m
->
md_dict
)
==
1
)
_PyModule_Clear
((
PyObject
*
)
m
);
Py_DECREF
(
m
->
md_dict
);
}
Py_TYPE
(
m
)
->
tp_free
((
PyObject
*
)
m
);
...
...
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