Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
55e22382
Commit
55e22382
authored
Feb 11, 2013
by
Serhiy Storchaka
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Raise KeyError instead of OverflowError when getpwuid's argument is out of
uid_t range.
parent
66383b2e
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
14 additions
and
1 deletion
+14
-1
Lib/test/test_pwd.py
Lib/test/test_pwd.py
+9
-0
Modules/pwdmodule.c
Modules/pwdmodule.c
+5
-1
No files found.
Lib/test/test_pwd.py
View file @
55e22382
...
...
@@ -49,7 +49,9 @@ class PwdTest(unittest.TestCase):
def
test_errors
(
self
):
self
.
assertRaises
(
TypeError
,
pwd
.
getpwuid
)
self
.
assertRaises
(
TypeError
,
pwd
.
getpwuid
,
3.14
)
self
.
assertRaises
(
TypeError
,
pwd
.
getpwnam
)
self
.
assertRaises
(
TypeError
,
pwd
.
getpwnam
,
42
)
self
.
assertRaises
(
TypeError
,
pwd
.
getpwall
,
42
)
# try to get some errors
...
...
@@ -93,6 +95,13 @@ class PwdTest(unittest.TestCase):
self
.
assertNotIn
(
fakeuid
,
byuids
)
self
.
assertRaises
(
KeyError
,
pwd
.
getpwuid
,
fakeuid
)
# -1 shouldn't be a valid uid because it has a special meaning in many
# uid-related functions
self
.
assertRaises
(
KeyError
,
pwd
.
getpwuid
,
-
1
)
# should be out of uid_t range
self
.
assertRaises
(
KeyError
,
pwd
.
getpwuid
,
2
**
128
)
self
.
assertRaises
(
KeyError
,
pwd
.
getpwuid
,
-
2
**
128
)
def
test_main
():
support
.
run_unittest
(
PwdTest
)
...
...
Modules/pwdmodule.c
View file @
55e22382
...
...
@@ -106,8 +106,12 @@ pwd_getpwuid(PyObject *self, PyObject *args)
{
uid_t
uid
;
struct
passwd
*
p
;
if
(
!
PyArg_ParseTuple
(
args
,
"O&:getpwuid"
,
_Py_Uid_Converter
,
&
uid
))
if
(
!
PyArg_ParseTuple
(
args
,
"O&:getpwuid"
,
_Py_Uid_Converter
,
&
uid
))
{
if
(
PyErr_ExceptionMatches
(
PyExc_OverflowError
))
PyErr_Format
(
PyExc_KeyError
,
"getpwuid(): uid not found"
);
return
NULL
;
}
if
((
p
=
getpwuid
(
uid
))
==
NULL
)
{
PyObject
*
uid_obj
=
_PyLong_FromUid
(
uid
);
if
(
uid_obj
==
NULL
)
...
...
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