Skip to content

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

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

Merged
merged 1 commit into from
May 30, 2025
Merged

Conversation

isidroas
Copy link
Contributor

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'

@norvig norvig merged commit 73261b0 into norvig:main May 30, 2025
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.

2 participants