Keithcat1

Results 58 comments of Keithcat1

When I run python.com on Windows, it breaks my ability to review already typed commands using the up and down arrows (like #199 but only while python.com is running. I...

After the last update, I'm having problems building Python. Here is what may or may not be a relevant block of text (there's a lot of it). ... build/bootstrap/ar.com rcsD...

It should be possible to change pip so that it downloads packages and then stores them inside the python.com zip file, right. I know that extension modules aren't supported, but...

@ahgamut When you say that extension modules are supported, do you mean that they have to be statically linked or that they can be loaded from disk? @jart The time.sleep...

@jart Would this help for adding shared object support? [https://github.com/fancycode/MemoryModule](https://github.com/fancycode/MemoryModule) I'm guessing loading shared objects or DLLs using the OS default functions isn't the hard part. Py2EXE actually had functionality...

It seems that connecting to for example localhost:6060 using urllib.requests.urlretrieve doesn't work. urllib.error.URLError:

You seem to have broken Python on Windows but not on WSL: Fatal Python error: Py_Initialize: can't initialize sys standard streams Current thread 0x0000000000000000 (most recent call first): 7770000ffde0 00000069abda...

The reason I wanted CTYPES is because it would allow me to use closed-source libraries like [http://www.un4seen.com/bass.html](http://www.un4seen.com/bass.html) which is good for playing audio but can't be statically linked. It would...

Cython is a tool that allows creating Python extension modules by converting Pythonic code into a C file which can call between C and Python. Might it be worth allowing...

make -j4 MODE=dbg -O o/dbg/third_party/python/python.com ... third_party/python/Python/frozen.c:10:10: fatal error: o//third_party/python/Python/importlib.inc: No such file or directory 10 | #include "o//third_party/python/Python/importlib.inc" | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ compilation terminated. `make MODE=dbg -j4 o/dbg/third_party/python/Python/frozen.o` exited with 1:...