| 90 | | # Python 2.3 returns slightly different results for completely bogus locales, |
|---|
| 91 | | # so we omit this test for that anything below 2.4. It's relatively harmless in |
|---|
| 92 | | # any cases (GIGO). This also means this won't be executed on Jython currently, |
|---|
| 93 | | # but life's like that sometimes. |
|---|
| 94 | | if sys.version_info >= (2, 4): |
|---|
| | 90 | # Python 2.3 and 2.4 return slightly different results for completely bogus |
|---|
| | 91 | # locales, so we omit this test for that anything below 2.4. It's relatively |
|---|
| | 92 | # harmless in any cases (GIGO). This also means this won't be executed on |
|---|
| | 93 | # Jython currently, but life's like that sometimes. (On those platforms, |
|---|
| | 94 | # passing in a truly bogus locale will get you the default locale back.) |
|---|
| | 95 | if sys.version_info >= (2, 5): |
|---|