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

time.process_time() instead of time.clock() #139

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

isidroas
Copy link

Documentation removed in python/cpython@b6a09ae

This solves this error in my Python3.9

$ python sudoku.py
All tests pass.
Traceback (most recent call last):
  File "/tmp/pytudes/py/sudoku.py", line 158, in <module>
    solve_all(open("sudoku-easy50.txt"), "easy")
  File "/tmp/pytudes/py/sudoku.py", line 134, in solve_all
    times, results = zip(*[time_solve(grid) for grid in grids])
  File "/tmp/pytudes/py/sudoku.py", line 134, in <listcomp>
    times, results = zip(*[time_solve(grid) for grid in grids])
  File "/tmp/pytudes/py/sudoku.py", line 141, in time_solve
    start = time.clock()
AttributeError: module 'time' has no attribute 'clock'

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant