Kevin Turcios

Results 35 issues of Kevin Turcios

> python -m nuitka --version ``` 2.0.2 Commercial: None Python: 3.8.10 (tags/v3.8.10:3d8993a, May 3 2021, 11:48:03) [MSC v.1928 64 bit (AMD64)] Flavor: CPython Official Executable: C:\Users\Divine\Desktop\PyDis\venv\Scripts\python.exe OS: Windows Arch: x86_64...

bug
factory

``` 2.1rc1 Commercial: None Python: 3.10.13 (main, Jan 3 2024, 21:05:13) [GCC 11.4.0] Flavor: pyenv Executable: /home/divine/Nuitka-Testing/venv/bin/python OS: Linux Arch: x86_64 Distribution: Ubuntu (based on Debian) 22.04.3 Version C compiler:...

bug

requirements `pip install pyuac pywin32` code ```py import pyuac if not pyuac.isUserAdmin(): pyuac.runAsAdmin() ``` when compiled we get this ![image](https://github.com/Nuitka/Nuitka/assets/106575910/5e652ba2-ccb1-4ee5-a98d-19a2bdcbe109) since it tries to find python.exe

enhancement
question
help wanted

Latest Nuitka, standalone src ```py import multiprocessing from sklearn.datasets import fetch_california_housing from sklearn.model_selection import GridSearchCV import xgboost as xgb if __name__ == "__main__": print("Parallel Parameter optimization") X, y = fetch_california_housing(return_X_y=True)...

bug
duplicate

groundwork for #1369 to be added

this PR will prepare playwright to make it easier to be compiled into standalone / onefile programs for ease of distribution the following changes have been made: 1) added the...

what are the chances you can expose an async interface similar to httpx's https://www.python-httpx.org/async/ client?

enhancement

using aiohttp with an http proxy with an https request shows an `path\to\venv\Lib\site-packages\aiohttp\connector.py:899: RuntimeWarning: An HTTPS request is being sent through an HTTPS proxy. This support for TLS in TLS...

bug

when freezing the script ``` import winloop import asyncio async def hello(): print("Hello") async def main(): tasks = [] for i in range(10): tasks.append(hello()) await asyncio.gather(*tasks) if __name__ == '__main__':...

bug
help wanted

setup: https://github.com/KRRT7/Nuitka-performance-suite/tree/dev/benchmarks/finished/disabled_bm_dask with the following yaml ```yaml - module-name: 'distributed.http' implicit-imports: - depends: - 'distributed.http.*' - 'distributed.http.*.*' - module-name: 'distributed.dashboard' data-files: dirs: - '.' ``` ``` ❯ nuitka --standalone --run...

bug
excellent_report