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
bda0dde1
Kaydet (Commit)
bda0dde1
authored
Tem 24, 2006
tarafından
Martin v. Löwis
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Patch #1448199: Release GIL around ConnectRegistry.
üst
8cab8b03
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
7 additions
and
0 deletions
+7
-0
test_winreg.py
Lib/test/test_winreg.py
+3
-0
NEWS
Misc/NEWS
+2
-0
_winreg.c
PC/_winreg.c
+2
-0
No files found.
Lib/test/test_winreg.py
Dosyayı görüntüle @
bda0dde1
...
...
@@ -151,3 +151,6 @@ if remote_name is not None:
else
:
print
"Remote registry calls can be tested using"
,
print
"'test_winreg.py --remote
\\\\
machine_name'"
# perform minimal ConnectRegistry test which just invokes it
h
=
ConnectRegistry
(
None
,
HKEY_LOCAL_MACHINE
)
h
.
Close
()
Misc/NEWS
Dosyayı görüntüle @
bda0dde1
...
...
@@ -61,6 +61,8 @@ Library
Extension
Modules
-----------------
-
Patch
#
1448199
:
Release
interpreter
lock
in
_winreg
.
ConnectRegistry
.
-
Patch
#
1521817
:
Index
range
checking
on
ctypes
arrays
containing
exactly
one
element
enabled
again
.
This
allows
iterating
over
these
arrays
,
without
the
need
to
check
the
array
size
before
.
...
...
PC/_winreg.c
Dosyayı görüntüle @
bda0dde1
...
...
@@ -960,7 +960,9 @@ PyConnectRegistry(PyObject *self, PyObject *args)
return
NULL
;
if
(
!
PyHKEY_AsHKEY
(
obKey
,
&
hKey
,
FALSE
))
return
NULL
;
Py_BEGIN_ALLOW_THREADS
rc
=
RegConnectRegistry
(
szCompName
,
hKey
,
&
retKey
);
Py_END_ALLOW_THREADS
if
(
rc
!=
ERROR_SUCCESS
)
return
PyErr_SetFromWindowsErrWithFunction
(
rc
,
"ConnectRegistry"
);
...
...
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