Whitespace normalization.

This commit is contained in:
Tim Peters 2001-03-16 08:29:48 +00:00
parent 4cf97c4972
commit 30edd2387d
6 changed files with 9 additions and 14 deletions

View file

@ -11,9 +11,9 @@ __all__ = ["listdir", "opendir", "annotate", "reset"]
cache = {} cache = {}
def reset(): def reset():
"""Reset the cache completely.""" """Reset the cache completely."""
global cache global cache
cache = {} cache = {}
def listdir(path): def listdir(path):
"""List directory contents, using cache.""" """List directory contents, using cache."""

View file

@ -643,5 +643,3 @@ def stack(context=1):
def trace(context=1): def trace(context=1):
"""Return a list of records for the stack below the current exception.""" """Return a list of records for the stack below the current exception."""
return getinnerframes(sys.exc_traceback, context) return getinnerframes(sys.exc_traceback, context)

View file

@ -1416,5 +1416,3 @@ def cli():
""" % (cmd, os.sep, cmd, cmd, cmd, cmd, os.sep) """ % (cmd, os.sep, cmd, cmd, cmd, cmd, os.sep)
if __name__ == '__main__': cli() if __name__ == '__main__': cli()

View file

@ -405,4 +405,3 @@ for i in range(100):
f1() f1()
verify(Foo.count == 0) verify(Foo.count == 0)