fogleman / Minecraft

Simple Minecraft-inspired program using Python and Pyglet
MIT License
5.21k stars 1.23k forks source link

Replaced time.clock() with time.process_time() #113

Open NeeleshVashist opened 4 years ago

NeeleshVashist commented 4 years ago

As of Python 3.3, time.clock() is deprecated, I replaced that with time.process_time() method to make it work with the latest Python version.

progval commented 4 years ago

Duplicate of #111