Jeong, YunWon
Jeong, YunWon
``` File "/tmp/tmp3a6kinnx/pip-25.1.1-py3-none-any.whl/pip/_vendor/typing_extensions.py", line 1768, in __new__ ``` This is weird. We have typing.ParamSpec but it hits the else block
Still failing, but with different error: ``` ERROR: Exception: Traceback (most recent call last): File "/tmp/tmpcrk8exvy/pip-25.2-py3-none-any.whl/pip/_internal/cli/base_command.py", line 107, in _run_wrapper status = _inner_run() File "/tmp/tmpcrk8exvy/pip-25.2-py3-none-any.whl/pip/_internal/cli/base_command.py", line 100, in _inner_run self.handle_pip_version_check(options)...
Finally!
I didn't push newline/indent fix not to break test yet. Please let me know if the approach is okay. Then I will finish the whitespace work.
@emilio could you take another look?
Though #989 fixed the similar case to #955 for modern C++ using constexpr, this patch using `#define` is not finished yet. I am not interested in finishing this PR anymore...
I am glad to see this, awesome.
@etaloof Could you please help? This PR need additonal works to make the upper commented new test passes
oh no... I forget to reset upstream to @etaloof's, now it is pushed here
`typing_extensions` checks if typing.ParamSpec exists: ``` # 3.10+ if hasattr(typing, 'ParamSpec'): ``` CPython run the if block. RustPython goes to else block due to lack of typing.ParamSpec. That triggers ```...