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
9cc4ed5c
Kaydet (Commit)
9cc4ed5c
authored
Ock 18, 2016
tarafından
Serhiy Storchaka
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Issue #26129: Deprecated accepting non-integers in grp.getgrgid().
üst
9def2843
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
31 additions
and
5 deletions
+31
-5
grp.rst
Doc/library/grp.rst
+3
-0
test_grp.py
Lib/test/test_grp.py
+10
-0
NEWS
Misc/NEWS
+2
-0
grpmodule.c
Modules/grpmodule.c
+16
-5
No files found.
Doc/library/grp.rst
Dosyayı görüntüle @
9cc4ed5c
...
@@ -42,6 +42,9 @@ It defines the following items:
...
@@ -42,6 +42,9 @@ It defines the following items:
Return the group database entry for the given numeric group ID. :exc:`KeyError`
Return the group database entry for the given numeric group ID. :exc:`KeyError`
is raised if the entry asked for cannot be found.
is raised if the entry asked for cannot be found.
.. deprecated:: 3.6
Since Python 3.6 the support of non-integer arguments like floats or
strings in :func:`getgrgid` is deprecated.
.. function:: getgrnam(name)
.. function:: getgrnam(name)
...
...
Lib/test/test_grp.py
Dosyayı görüntüle @
9cc4ed5c
...
@@ -92,5 +92,15 @@ class GroupDatabaseTestCase(unittest.TestCase):
...
@@ -92,5 +92,15 @@ class GroupDatabaseTestCase(unittest.TestCase):
self
.
assertRaises
(
KeyError
,
grp
.
getgrgid
,
fakegid
)
self
.
assertRaises
(
KeyError
,
grp
.
getgrgid
,
fakegid
)
def
test_noninteger_gid
(
self
):
entries
=
grp
.
getgrall
()
if
not
entries
:
self
.
skipTest
(
'no groups'
)
# Choose an existent gid.
gid
=
entries
[
0
][
2
]
self
.
assertWarns
(
DeprecationWarning
,
grp
.
getgrgid
,
float
(
gid
))
self
.
assertWarns
(
DeprecationWarning
,
grp
.
getgrgid
,
str
(
gid
))
if
__name__
==
"__main__"
:
if
__name__
==
"__main__"
:
unittest
.
main
()
unittest
.
main
()
Misc/NEWS
Dosyayı görüntüle @
9cc4ed5c
...
@@ -131,6 +131,8 @@ Core and Builtins
...
@@ -131,6 +131,8 @@ Core and Builtins
Library
Library
-------
-------
- Issue #26129: Deprecated accepting non-integers in grp.getgrgid().
- Issue #25850: Use cross-compilation by default for 64-bit Windows.
- Issue #25850: Use cross-compilation by default for 64-bit Windows.
- Issue #25822: Add docstrings to the fields of urllib.parse results.
- Issue #25822: Add docstrings to the fields of urllib.parse results.
...
...
Modules/grpmodule.c
Dosyayı görüntüle @
9cc4ed5c
...
@@ -100,14 +100,25 @@ grp_getgrgid_impl(PyModuleDef *module, PyObject *id)
...
@@ -100,14 +100,25 @@ grp_getgrgid_impl(PyModuleDef *module, PyObject *id)
gid_t
gid
;
gid_t
gid
;
struct
group
*
p
;
struct
group
*
p
;
py_int_id
=
PyNumber_Long
(
id
);
if
(
!
_Py_Gid_Converter
(
id
,
&
gid
))
{
if
(
!
py_int_id
)
if
(
!
PyErr_ExceptionMatches
(
PyExc_TypeError
))
{
return
NULL
;
return
NULL
;
if
(
!
_Py_Gid_Converter
(
py_int_id
,
&
gid
))
{
}
PyErr_Clear
();
if
(
PyErr_WarnFormat
(
PyExc_DeprecationWarning
,
1
,
"group id must be int, not %.200"
,
id
->
ob_type
->
tp_name
)
<
0
)
{
return
NULL
;
}
py_int_id
=
PyNumber_Long
(
id
);
if
(
!
py_int_id
)
return
NULL
;
if
(
!
_Py_Gid_Converter
(
py_int_id
,
&
gid
))
{
Py_DECREF
(
py_int_id
);
return
NULL
;
}
Py_DECREF
(
py_int_id
);
Py_DECREF
(
py_int_id
);
return
NULL
;
}
}
Py_DECREF
(
py_int_id
);
if
((
p
=
getgrgid
(
gid
))
==
NULL
)
{
if
((
p
=
getgrgid
(
gid
))
==
NULL
)
{
PyObject
*
gid_obj
=
_PyLong_FromGid
(
gid
);
PyObject
*
gid_obj
=
_PyLong_FromGid
(
gid
);
...
...
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