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
69492dab
Commit
69492dab
authored
Sep 02, 2013
by
Raymond Hettinger
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Factor-out the common code for setting a KeyError.
parent
7f5c22c0
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
20 additions
and
33 deletions
+20
-33
Include/pyerrors.h
Include/pyerrors.h
+1
-0
Objects/dictobject.c
Objects/dictobject.c
+4
-18
Objects/setobject.c
Objects/setobject.c
+1
-15
Python/errors.c
Python/errors.c
+14
-0
No files found.
Include/pyerrors.h
View file @
69492dab
...
...
@@ -75,6 +75,7 @@ typedef PyOSErrorObject PyWindowsErrorObject;
PyAPI_FUNC
(
void
)
PyErr_SetNone
(
PyObject
*
);
PyAPI_FUNC
(
void
)
PyErr_SetObject
(
PyObject
*
,
PyObject
*
);
PyAPI_FUNC
(
void
)
_PyErr_SetKeyError
(
PyObject
*
);
PyAPI_FUNC
(
void
)
PyErr_SetString
(
PyObject
*
exception
,
const
char
*
string
/* decoded from utf-8 */
...
...
Objects/dictobject.c
View file @
69492dab
...
...
@@ -95,20 +95,6 @@ To avoid slowing down lookups on a near-full table, we resize the table when
it's USABLE_FRACTION (currently two-thirds) full.
*/
/* Set a key error with the specified argument, wrapping it in a
* tuple automatically so that tuple keys are not unpacked as the
* exception arguments. */
static
void
set_key_error
(
PyObject
*
arg
)
{
PyObject
*
tup
;
tup
=
PyTuple_Pack
(
1
,
arg
);
if
(
!
tup
)
return
;
/* caller will expect error to be set anyway */
PyErr_SetObject
(
PyExc_KeyError
,
tup
);
Py_DECREF
(
tup
);
}
#define PERTURB_SHIFT 5
/*
...
...
@@ -1241,7 +1227,7 @@ PyDict_DelItem(PyObject *op, PyObject *key)
if
(
ep
==
NULL
)
return
-
1
;
if
(
*
value_addr
==
NULL
)
{
set_key_e
rror
(
key
);
_PyErr_SetKeyE
rror
(
key
);
return
-
1
;
}
old_value
=
*
value_addr
;
...
...
@@ -1530,7 +1516,7 @@ dict_subscript(PyDictObject *mp, PyObject *key)
else
if
(
PyErr_Occurred
())
return
NULL
;
}
set_key_e
rror
(
key
);
_PyErr_SetKeyE
rror
(
key
);
return
NULL
;
}
else
...
...
@@ -2302,7 +2288,7 @@ dict_pop(PyDictObject *mp, PyObject *args)
Py_INCREF
(
deflt
);
return
deflt
;
}
set_key_e
rror
(
key
);
_PyErr_SetKeyE
rror
(
key
);
return
NULL
;
}
if
(
!
PyUnicode_CheckExact
(
key
)
||
...
...
@@ -2320,7 +2306,7 @@ dict_pop(PyDictObject *mp, PyObject *args)
Py_INCREF
(
deflt
);
return
deflt
;
}
set_key_e
rror
(
key
);
_PyErr_SetKeyE
rror
(
key
);
return
NULL
;
}
*
value_addr
=
NULL
;
...
...
Objects/setobject.c
View file @
69492dab
...
...
@@ -11,20 +11,6 @@
#include "structmember.h"
#include "stringlib/eq.h"
/* Set a key error with the specified argument, wrapping it in a
* tuple automatically so that tuple keys are not unpacked as the
* exception arguments. */
static
void
set_key_error
(
PyObject
*
arg
)
{
PyObject
*
tup
;
tup
=
PyTuple_Pack
(
1
,
arg
);
if
(
!
tup
)
return
;
/* caller will expect error to be set anyway */
PyErr_SetObject
(
PyExc_KeyError
,
tup
);
Py_DECREF
(
tup
);
}
/* This must be >= 1. */
#define PERTURB_SHIFT 5
#define LINEAR_PROBES 9
...
...
@@ -1948,7 +1934,7 @@ set_remove(PySetObject *so, PyObject *key)
}
if
(
rv
==
DISCARD_NOTFOUND
)
{
set_key_e
rror
(
key
);
_PyErr_SetKeyE
rror
(
key
);
return
NULL
;
}
Py_RETURN_NONE
;
...
...
Python/errors.c
View file @
69492dab
...
...
@@ -117,6 +117,20 @@ PyErr_SetObject(PyObject *exception, PyObject *value)
PyErr_Restore
(
exception
,
value
,
tb
);
}
/* Set a key error with the specified argument, wrapping it in a
* tuple automatically so that tuple keys are not unpacked as the
* exception arguments. */
void
_PyErr_SetKeyError
(
PyObject
*
arg
)
{
PyObject
*
tup
;
tup
=
PyTuple_Pack
(
1
,
arg
);
if
(
!
tup
)
return
;
/* caller will expect error to be set anyway */
PyErr_SetObject
(
PyExc_KeyError
,
tup
);
Py_DECREF
(
tup
);
}
void
PyErr_SetNone
(
PyObject
*
exception
)
{
...
...
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