]> git.ipfire.org Git - thirdparty/Python/cpython.git/commit
bpo-42093: Cleanup _PyDict_GetItemHint() (GH-24582)
authorVictor Stinner <vstinner@python.org>
Sun, 21 Feb 2021 11:02:04 +0000 (12:02 +0100)
committerGitHub <noreply@github.com>
Sun, 21 Feb 2021 11:02:04 +0000 (12:02 +0100)
commitd5fc99873769f0d0d5c5d5d99059177a75a4e46e
tree62651f8f8bea0fa001c79f8932437926e3879efe
parent38b6c2acd4bba666bd64779c42b9d91cbee19274
bpo-42093: Cleanup _PyDict_GetItemHint() (GH-24582)

* No longer save/restore the current exception. It is no longer used
  with an exception raised.
* No longer clear the current exception on error: it's now up to the
  caller.
Objects/dictobject.c
Python/ceval.c