True if filenames must be checked case-insensitively and ignore environment flags are not set.
()
| 65 | key = b'PYTHONCASEOK' |
| 66 | |
| 67 | def _relax_case(): |
| 68 | """True if filenames must be checked case-insensitively and ignore environment flags are not set.""" |
| 69 | return not sys.flags.ignore_environment and key in _os.environ |
| 70 | else: |
| 71 | def _relax_case(): |
| 72 | """True if filenames must be checked case-insensitively.""" |
no outgoing calls
no test coverage detected
searching dependent graphs…