Lukasz Taczuk

Results 41 comments of Lukasz Taczuk

Hey, in case I don't figure it out by myself, by looking at the code, could you zip me the files that are located at `c:\users\\.kivy\logs` and send them to...

I think the only reason for this problem to happen could be that the graphics library (goddammit you, Kivy, again!) registered two clicks on the "use this mod" button because...

_Original comment by_ **overfl0 (Bitbucket: [overfl0](https://bitbucket.org/overfl0), GitHub: [overfl0](https://github.com/overfl0))**: --- Related: f7382eddf61e (PBO handling mini-library) https://community.bistudio.com/wiki/PBO_File_Format

Import hooks should be able to solve this issue and also enable finer control on what is imported (and blocked) by the non-pythia scripts. They could even allow storing and...

```python import sys import importlib.abc import importlib.machinery import textwrap class InterceptDummyWrapper(object): data = { 'intercept_modules/__init__.py': textwrap.dedent('''\ # This should be __init__py print('Executing intercept_modules.__init__.py') Foo = 43 ''').encode('latin-1'), 'intercept_modules/submodule.py': textwrap.dedent('''\ print('Executing...

I think we may consider just using zipimport for storing those files inside the dll. The easiest (and cross-platform) way would be to just append the zip at the end...

https://togithub.com/pypa/packaging-problems/issues/664

Consider using https://github.com/astral-sh/uv to do all of the resolving. Sadly, they are not providing APIs and they have no plans to change that. Uv would need te be vendored in,...

This seems to be a bug in Setuptools: https://github.com/pypa/setuptools/issues/3589

Regarding `class SlotInfo;`, there is a Pull Request from @Adanteh here: https://github.com/overfl0/Armaclass/pull/2 but since no one else seemed to really need this, I was pestering him with writing unit tests...