]> granicus.if.org Git - python/commitdiff
typo
authorBenjamin Peterson <benjamin@python.org>
Mon, 9 Aug 2010 15:49:56 +0000 (15:49 +0000)
committerBenjamin Peterson <benjamin@python.org>
Mon, 9 Aug 2010 15:49:56 +0000 (15:49 +0000)
Lib/inspect.py

index 1690f94771633b6e6230017e03242dddbd5a8d21..3bc220b851cf5d7577ae8de895dd409ea8f3b8d9 100644 (file)
@@ -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):