Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix timing utility docstrings for tic toc tac #319

Merged
merged 1 commit into from
Aug 6, 2017
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions quantecon/util/timing.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,8 @@ def tic(self):
self.last = t

def tac(self):
"""Returns and prints time elapsed since last tic()"""
"""Returns and prints time elapsed since last
tic(), tac() or toc() whichever occured last."""

import time

Expand All @@ -48,8 +49,7 @@ def tac(self):
return elapsed

def toc(self):
"""Returns and prints time elapsed since last
tic() or tac() whichever occured last"""
"""Returns and prints time elapsed since last tic()."""

import time

Expand Down Expand Up @@ -77,5 +77,5 @@ def tac():


def toc():
"""Prints and returns elapsed time since last tic, tac or toc."""
"""Returns and prints time elapsed since last tic()."""
return __timer__.toc()