itsapi / pycraft

A Minecraft-inspired game for the terminal
GNU General Public License v2.0
197 stars 21 forks source link

resolve deprecation warnings about implicit int conversion #151

Closed isidentical closed 4 years ago

isidentical commented 4 years ago
/home/isidentical/pycraft/render_interface.py:35: DeprecationWarning: an integer is required (got type float).  Implicit conversion to integers using __int__ is deprecated, and may be removed in a future version of Python.
  return render_c.create_lighting_buffer(width, height, x, y, map_, slice_heights, bk_objects, sky_colour, day, lights, settings_ref)

With bpo-36048, implicit integer conversion removed from PyLong_ family so we need to convert it explicitly.