Josip Komljenović

Results 15 comments of Josip Komljenović

Some extra questions: - What should be the future of `pygame.version` module? - Should we also include those functions there? - How are we gonna treat `SoftwareVersion` class that is...

I think the best approach would be to open the new issue for every bug you encounter, and then we group them with the same tag. Because GitHub is not...

OS? Camera backend? Because I have that same camera and I wasn't able to reproduce segfault on 2.1.2

> Yeah an actual reproducible program and results would make things easier. Based on the @MyreMylar test in the issue: https://gist.github.com/MightyJosip/dca7901bb48f053bdb10e0f23244afa1 (file test.py) Tested on current release (2.3.2) and my...

> It's also confusing to see replacements for things that didn't previously have an incref. Yea you are right, that comment is mostly for encapsulate_api, and in the current master...

Valid points. My main goal for this was to remove this part https://github.com/pygame-community/pygame-ce/pull/3417/files#diff-41261be2b7f66f350124346cb97d5e6af46016b07c7d82d4fa9120b359def0bfL208-L243, since it has no use for the python side. Anyways, I guess I will wait a bit...

Hi, thanks for comment. Yea this is more like proof of concept, we can still discuss it in more details, and split the commit. Just one question, what is your...

> D:\a\pygame-ce\pygame-ce\src_c\line.c(5): fatal error C1083: Cannot open include file: 'pytypedefs.h': No such file or directory Do you need those extra imports in lines 4/5. Because I can't see them anywhere...

What I mean by the memory leak is the following: ```py import pygame import random import psutil import os pygame.display.set_mode((800, 600), flags=pygame.SCALED) while True: print(f"Memory usage: {psutil.Process(os.getpid()).memory_info().rss / 1024 /...