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

Changelog

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

  * New upstream version

 -- Étienne Mollier <email address hidden>  Wed, 27 Dec 2023 17:00:32 +0100

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

Builds

Noble: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
python-pyglfw_2.6.4+dfsg-1.dsc 2.3 KiB 9c7b64ab6183a4fd594581953a10dbefddc09b925ddb5c6cc1cbab384a83c276
python-pyglfw_2.6.4+dfsg.orig.tar.xz 24.0 KiB 0c12cab299e29b91a223a9d283b13b724600f6c8bd03b791a80faf367f4e0b35
python-pyglfw_2.6.4+dfsg-1.debian.tar.xz 3.5 KiB 8222dd21d1d27e8478fcbdef65d633498594119033e16a1d9895074374286f2a

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