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
a8c360ee
Kaydet (Commit)
a8c360ee
authored
Tem 17, 2007
tarafından
Guido van Rossum
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
SF patch# 1755229 by Amaury Forgeot d'Arc: fix _winreg module and tests.
Untested.
üst
52b8976a
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
24 additions
and
34 deletions
+24
-34
test_winreg.py
Lib/test/test_winreg.py
+4
-11
_winreg.c
PC/_winreg.c
+20
-23
No files found.
Lib/test/test_winreg.py
Dosyayı görüntüle @
a8c360ee
...
...
@@ -4,7 +4,7 @@
from
_winreg
import
*
import
os
,
sys
from
test.test_support
import
verify
,
have_unicode
from
test.test_support
import
verify
test_key_name
=
"SOFTWARE
\\
Python Registry Test Key - Delete Me"
...
...
@@ -13,17 +13,10 @@ test_data = [
(
"String Val"
,
"A string value"
,
REG_SZ
),
(
"StringExpand"
,
"The path is
%
path
%
"
,
REG_EXPAND_SZ
),
(
"Multi-string"
,
[
"Lots"
,
"of"
,
"string"
,
"values"
],
REG_MULTI_SZ
),
(
"Raw Data"
,
(
"binary"
+
chr
(
0
)
+
"data"
),
REG_BINARY
),
(
"Raw Data"
,
bytes
(
"binary"
+
chr
(
0
)
+
"data"
),
REG_BINARY
),
(
"Big String"
,
"x"
*
(
2
**
14
-
1
),
REG_SZ
),
(
"Big Binary"
,
"x"
*
(
2
**
14
),
REG_BINARY
),
(
"Big Binary"
,
b
"x"
*
(
2
**
14
),
REG_BINARY
),
]
if
have_unicode
:
test_data
+=
[
(
str
(
"Unicode Val"
),
str
(
"A Unicode value"
),
REG_SZ
,),
(
"UnicodeExpand"
,
str
(
"The path is
%
path
%
"
),
REG_EXPAND_SZ
),
(
"Multi-unicode"
,
[
str
(
"Lots"
),
str
(
"of"
),
str
(
"unicode"
),
str
(
"values"
)],
REG_MULTI_SZ
),
(
"Multi-mixed"
,
[
str
(
"Unicode"
),
str
(
"and"
),
"string"
,
"values"
],
REG_MULTI_SZ
),
]
def
WriteTestData
(
root_key
):
# Set the default value for this key.
...
...
@@ -65,7 +58,7 @@ def WriteTestData(root_key):
def
ReadTestData
(
root_key
):
# Check we can get default value for this key.
val
=
QueryValue
(
root_key
,
test_key_name
)
verify
(
val
==
"Default value"
,
"Registry didn't give back the correct value"
)
verify
(
type
(
val
)
is
str
and
val
==
"Default value"
,
"Registry didn't give back the correct value"
)
key
=
OpenKey
(
root_key
,
test_key_name
)
# Read the sub-keys
...
...
PC/_winreg.c
Dosyayı görüntüle @
a8c360ee
...
...
@@ -404,7 +404,7 @@ PyHKEY_strFunc(PyObject *ob)
PyHKEYObject
*
pyhkey
=
(
PyHKEYObject
*
)
ob
;
char
resBuf
[
160
];
wsprintf
(
resBuf
,
"<PyHKEY:%p>"
,
pyhkey
->
hkey
);
return
Py
String
_FromString
(
resBuf
);
return
Py
Unicode
_FromString
(
resBuf
);
}
static
int
...
...
@@ -444,6 +444,7 @@ static PyNumberMethods PyHKEY_NumberMethods =
PyHKEY_binaryFailureFunc
,
/* nb_and */
PyHKEY_binaryFailureFunc
,
/* nb_xor */
PyHKEY_binaryFailureFunc
,
/* nb_or */
NULL
,
/* nb_coerce */
PyHKEY_intFunc
,
/* nb_int */
PyHKEY_unaryFailureFunc
,
/* nb_long */
PyHKEY_unaryFailureFunc
,
/* nb_float */
...
...
@@ -729,11 +730,10 @@ Py2Reg(PyObject *value, DWORD typ, BYTE **retDataBuf, DWORD *retDataSize)
return
FALSE
;
need_decref
=
1
;
}
if
(
!
Py
String
_Check
(
value
))
if
(
!
Py
Bytes
_Check
(
value
))
return
FALSE
;
*
retDataSize
=
1
+
strlen
(
PyString_AS_STRING
(
(
PyStringObject
*
)
value
));
PyBytes_AS_STRING
(
value
));
}
*
retDataBuf
=
(
BYTE
*
)
PyMem_NEW
(
DWORD
,
*
retDataSize
);
if
(
*
retDataBuf
==
NULL
){
...
...
@@ -744,8 +744,7 @@ Py2Reg(PyObject *value, DWORD typ, BYTE **retDataBuf, DWORD *retDataSize)
strcpy
((
char
*
)
*
retDataBuf
,
""
);
else
strcpy
((
char
*
)
*
retDataBuf
,
PyString_AS_STRING
(
(
PyStringObject
*
)
value
));
PyBytes_AS_STRING
(
value
));
if
(
need_decref
)
Py_DECREF
(
value
);
break
;
...
...
@@ -770,7 +769,7 @@ Py2Reg(PyObject *value, DWORD typ, BYTE **retDataBuf, DWORD *retDataSize)
PyObject
*
t
;
t
=
PyList_GET_ITEM
(
(
PyListObject
*
)
value
,
j
);
if
(
Py
String
_Check
(
t
))
{
if
(
Py
Bytes
_Check
(
t
))
{
obs
[
j
]
=
t
;
Py_INCREF
(
t
);
}
else
if
(
PyUnicode_Check
(
t
))
{
...
...
@@ -783,8 +782,7 @@ Py2Reg(PyObject *value, DWORD typ, BYTE **retDataBuf, DWORD *retDataSize)
}
else
goto
reg_multi_fail
;
size
+=
1
+
strlen
(
PyString_AS_STRING
(
(
PyStringObject
*
)
obs
[
j
]));
PyBytes_AS_STRING
(
obs
[
j
]));
}
*
retDataSize
=
size
+
1
;
...
...
@@ -800,12 +798,9 @@ Py2Reg(PyObject *value, DWORD typ, BYTE **retDataBuf, DWORD *retDataSize)
{
PyObject
*
t
;
t
=
obs
[
j
];
strcpy
(
P
,
PyString_AS_STRING
(
(
PyStringObject
*
)
t
));
strcpy
(
P
,
PyBytes_AS_STRING
(
t
));
P
+=
1
+
strlen
(
PyString_AS_STRING
(
(
PyStringObject
*
)
t
));
PyBytes_AS_STRING
(
t
));
Py_DECREF
(
obs
[
j
]);
}
/* And doubly-terminate the list... */
...
...
@@ -922,7 +917,7 @@ Reg2Py(char *retDataBuf, DWORD retDataSize, DWORD typ)
obData
=
Py_None
;
}
else
obData
=
Py_BuildValue
(
"
s
#"
,
obData
=
Py_BuildValue
(
"
y
#"
,
(
char
*
)
retDataBuf
,
retDataSize
);
break
;
...
...
@@ -1047,7 +1042,7 @@ PyEnumKey(PyObject *self, PyObject *args)
if
(
rc
!=
ERROR_SUCCESS
)
return
PyErr_SetFromWindowsErrWithFunction
(
rc
,
"RegEnumKeyEx"
);
retStr
=
Py
String
_FromStringAndSize
(
tmpbuf
,
len
);
retStr
=
Py
Unicode
_FromStringAndSize
(
tmpbuf
,
len
);
return
retStr
;
/* can be NULL */
}
...
...
@@ -1109,7 +1104,7 @@ PyEnumValue(PyObject *self, PyObject *args)
retVal
=
NULL
;
goto
fail
;
}
retVal
=
Py_BuildValue
(
"
s
Oi"
,
retValueBuf
,
obData
,
typ
);
retVal
=
Py_BuildValue
(
"
U
Oi"
,
retValueBuf
,
obData
,
typ
);
Py_DECREF
(
obData
);
fail:
PyMem_Free
(
retValueBuf
);
...
...
@@ -1232,17 +1227,19 @@ PyQueryValue(PyObject *self, PyObject *args)
!=
ERROR_SUCCESS
)
return
PyErr_SetFromWindowsErrWithFunction
(
rc
,
"RegQueryValue"
);
ret
Str
=
PyString_FromStringAndSize
(
NULL
,
bufSize
);
if
(
ret
Str
==
NULL
)
return
NULL
;
retBuf
=
PyString_AS_STRING
(
retStr
);
ret
Buf
=
(
char
*
)
PyMem_Malloc
(
bufSize
);
if
(
ret
Buf
==
NULL
)
return
PyErr_NoMemory
()
;
if
((
rc
=
RegQueryValue
(
hKey
,
subKey
,
retBuf
,
&
bufSize
))
!=
ERROR_SUCCESS
)
{
Py
_DECREF
(
retStr
);
Py
Mem_Free
(
retBuf
);
return
PyErr_SetFromWindowsErrWithFunction
(
rc
,
"RegQueryValue"
);
}
_PyString_Resize
(
&
retStr
,
strlen
(
retBuf
));
retStr
=
PyUnicode_DecodeMBCS
(
retBuf
,
strlen
(
retBuf
),
NULL
);
PyMem_Free
(
retBuf
);
return
retStr
;
}
...
...
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