(loc)
| 61 | # Workaround for MSVC6(debug) crash bug |
| 62 | if "MSC v.1200" in sys.version: |
| 63 | def accept(loc): |
| 64 | a = loc.split(".") |
| 65 | return not(len(a) == 2 and len(a[-1]) >= 9) |
| 66 | candidate_locales = [loc for loc in candidate_locales if accept(loc)] |
| 67 | |
| 68 | # List known locale values to test against when available. |
no test coverage detected
searching dependent graphs…