Gregory Szorc
Gregory Szorc
Thanks for the bug report and the investigation! (I wish we had better test coverage of `multiprocessing` functionality: there have been few bugs in it!)
Even though the `readline` extension module is disabled, I don't think it should be. I want to say that `readline` is fixed in a modern version of the Python distributions...
There is a default search path for x509 certificates compiled into the OpenSSL/LibreSSL that is bundled with the Python distribution that PyOxidizer is using. This default search path likely only...
What was the output before this failure? We were seeing a bunch of `No such file or directory` reports in earlier versions of PyOxidizer. I think they are all fixed...
That `during initializing Python core: could not format PyStatus` error occurs when `Py_InitializeFromConfig()` errors and the resulting `PyStatus` doesn't have an annotated function name or message. That's a bit weird,...
You'd have to give me steps to reproduce, including how you generated the `kernel_artifacts` directory. Could you provide a `Dockerfile` or a shell script to run inside a base Docker...
Here's the implementation of `pkgutil.read_data()` from the Python stdlib: ```python def get_data(package, resource): spec = importlib.util.find_spec(package) if spec is None: return None loader = spec.loader if loader is None or...
The build is working but the invoked binary is exiting with a non-0 exit code. Can you attempt to run the binary build into the `pyapp/./build/x86_64-apple-darwin/debug/install` directory (it is likely...
Correct, RFCs like 5280 and 5652 are explicit about banning fractional seconds and non-Z timezone form via `MUST [NOT]` clauses. A potential drawback with a separate type like `GeneralizedTimeFrac` is...
In the absence of evidence that the potential for type explosion exists (which anyone has yet to find), I agree that it is best to avoid complexity and footguns by...