From: Benjamin Peterson Date: Mon, 9 Aug 2010 15:49:56 +0000 (+0000) Subject: typo X-Git-Tag: v3.2a2~389 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=a3a3fc6770976db921dbcc810b7779e7ea7ded07;p=python typo --- diff --git a/Lib/inspect.py b/Lib/inspect.py index 1690f94771..3bc220b851 100644 --- a/Lib/inspect.py +++ b/Lib/inspect.py @@ -1063,7 +1063,7 @@ def getinnerframes(tb, context=1): return framelist def currentframe(): - """Return the frame or the caller or None if this is not possible.""" + """Return the frame of the caller or None if this is not possible.""" return sys._getframe(1) if hasattr(sys, "_getframe") else None def stack(context=1):