fanninpm

Results 128 comments of fanninpm

Version 1.5 of xopen was released today (2022-03-23), incorporating the two changes mentioned in a previous comment. Even if Augur doesn't opt for multithreaded compression, its performance may increase from...

I don't think this particular module belongs in the `stdlib` crate: ```text >>> import _locale >>> _locale.__file__ Traceback (most recent call last): File "", line 1, in AttributeError: module '_locale'...

> Does `__file__` attribute existence different by it is builtin or not? Let's see: ```text >>> import argparse # pure-python module >>> argparse.__file__ '/usr/lib/python3.10/argparse.py' >>> import mmap # dynamically-linked c...

Before making the f-string parser more efficient, it might be better to make it _compliant_ with https://github.com/python/cpython/blob/3.10/Lib/test/test_fstring.py (without crashing or throwing unnecessary `SyntaxError`s).

@dvermd have you tried taking a look at https://github.com/python/cpython/blob/3.10/Lib/test/test_fstring.py?

Interoperability with PyO3 is something we should look at in the future. See also #3016.

@youknowone does this have to do with LALRPOP not being installed?

@lastmjs Try `cargo clean` followed by `cargo build`. Does that work?

> seriously, I want to do this soon. That's why I assigned @coolreader18.

It may be convenient to temporarily modify `.github/workflows/ci.yaml` to focus on the CI operations that run on Windows.