Issue #21418: Fix a crash in the builtin function super() when called without

argument and without current frame (ex: embedded Python).
This commit is contained in:
Victor Stinner 2014-05-13 01:32:36 +02:00
parent b0539b27d9
commit 1c6970fac9
2 changed files with 12 additions and 2 deletions

View file

@ -10,6 +10,9 @@ Release date: TBA
Core and Builtins
-----------------
- Issue #21418: Fix a crash in the builtin function super() when called without
argument and without current frame (ex: embedded Python).
- Issue #21425: Fix flushing of standard streams in the interactive
interpreter.