(env_var: str)
| 324 | |
| 325 | |
| 326 | def process_env_var(env_var: str) -> Variable: |
| 327 | if ( |
| 328 | env_var == "platform_python_implementation" |
| 329 | or env_var == "python_implementation" |
| 330 | ): |
| 331 | return Variable("platform_python_implementation") |
| 332 | else: |
| 333 | return Variable(env_var) |
| 334 | |
| 335 | |
| 336 | def process_python_str(python_str: str) -> Value: |
no test coverage detected