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

Changelog

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

  * New upstream version

 -- Étienne Mollier <email address hidden>  Sun, 26 Nov 2023 12:14:01 +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.3+dfsg-1.dsc 2.3 KiB 8b859da5c613047fefa2a188bf8f2755e281821f111e0966675c8eabf13f437e
python-pyglfw_2.6.3+dfsg.orig.tar.xz 24.0 KiB d31efa48648959d59eca09cea06b797c6d3d7ecb8c4783e1d42c0867197d012d
python-pyglfw_2.6.3+dfsg-1.debian.tar.xz 3.5 KiB 82a80c307c49772665287832d686e727670d5dab5b1ecd243f228e1d8a22db33

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