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
4b318f8b
Kaydet (Commit)
4b318f8b
authored
Ock 13, 2017
tarafından
Serhiy Storchaka
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Issue #29219: Fixed infinite recursion in the repr of uninitialized
ctypes.CDLL instances.
üst
3023ebb4
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
0 deletions
+7
-0
__init__.py
Lib/ctypes/__init__.py
+4
-0
NEWS
Misc/NEWS
+3
-0
No files found.
Lib/ctypes/__init__.py
Dosyayı görüntüle @
4b318f8b
...
@@ -327,6 +327,10 @@ class CDLL(object):
...
@@ -327,6 +327,10 @@ class CDLL(object):
"""
"""
_func_flags_
=
_FUNCFLAG_CDECL
_func_flags_
=
_FUNCFLAG_CDECL
_func_restype_
=
c_int
_func_restype_
=
c_int
# default values for repr
_name
=
'<uninitialized>'
_handle
=
0
_FuncPtr
=
None
def
__init__
(
self
,
name
,
mode
=
DEFAULT_MODE
,
handle
=
None
,
def
__init__
(
self
,
name
,
mode
=
DEFAULT_MODE
,
handle
=
None
,
use_errno
=
False
,
use_errno
=
False
,
...
...
Misc/NEWS
Dosyayı görüntüle @
4b318f8b
...
@@ -13,6 +13,9 @@ Core and Builtins
...
@@ -13,6 +13,9 @@ Core and Builtins
Library
Library
-------
-------
- Issue #29219: Fixed infinite recursion in the repr of uninitialized
ctypes.CDLL instances.
- Issue #28969: Fixed race condition in C implementation of functools.lru_cache.
- Issue #28969: Fixed race condition in C implementation of functools.lru_cache.
KeyError could be raised when cached function with full cache was
KeyError could be raised when cached function with full cache was
simultaneously called from differen threads with the same uncached arguments.
simultaneously called from differen threads with the same uncached arguments.
...
...
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