python-pyglfw 2.6.2+dfsg-1 source package in Ubuntu

Changelog

python-pyglfw (2.6.2+dfsg-1) unstable; urgency=medium

  * New upstream version

 -- Étienne Mollier <email address hidden>  Mon, 10 Jul 2023 23:29:34 +0200

Upload details

Uploaded by:
Debian Python Team
Uploaded to:
Sid
Original maintainer:
Debian Python Team
Architectures:
all
Section:
misc
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section
Mantic release universe misc

Builds

Mantic: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
python-pyglfw_2.6.2+dfsg-1.dsc 2.3 KiB 1a765dcbf2538cad93b379d8c452b79485b2423982da89201e5512761c8c23f2
python-pyglfw_2.6.2+dfsg.orig.tar.xz 24.0 KiB eddb22debd4e4740c3ce3ee78dc551358ce108ea7642878cf8bde86d6b0cf701
python-pyglfw_2.6.2+dfsg-1.debian.tar.xz 3.5 KiB 06a06c6b90c41a31f0d2802620dc180bb939d828367eeecb066dbe6528f5f1c2

Available diffs

No changes file available.

Binary packages built by this source

python3-pyglfw: Python bindings for GLFW

 This module provides Python bindings for GLFW. It is a ctypes
 wrapper which keeps very close to the original GLFW API, except
 for:
 .
  * function names use the pythonic words_with_underscores
    notation instead of camelCase
  * GLFW_ and glfw prefixes have been removed, as their function
    is replaced by the module namespace
  * structs have been replaced with Python sequences and
    namedtuples
  * functions like glfwGetMonitors return a list instead of a
    pointer and an object count
  * Gamma ramps use floats between 0.0 and 1.0 instead of
    unsigned shorts
  * GLFW errors are reported as glfw.GLFWError warnings if no
    error callback is set
  * instead of a sequence for GLFWimage structs, PIL/pillow
    Image objects can be used