diff options
author | Barry Warsaw <barry@python.org> | 1998-03-12 13:15:28 (GMT) |
---|---|---|
committer | Barry Warsaw <barry@python.org> | 1998-03-12 13:15:28 (GMT) |
commit | 844e664e9d1ed9f4c4c6217b3d5e99020d1b5867 (patch) | |
tree | 1dc8383afe9805cf7d4632d9307e5456436354ed /Tools/world | |
parent | 6ef871ce2fee6202e4014eb4154eb866ac24a5fe (diff) | |
download | cpython-844e664e9d1ed9f4c4c6217b3d5e99020d1b5867.zip cpython-844e664e9d1ed9f4c4c6217b3d5e99020d1b5867.tar.gz cpython-844e664e9d1ed9f4c4c6217b3d5e99020d1b5867.tar.bz2 |
Added a hack to deal with common practice 'uk' for United Kingdom
Diffstat (limited to 'Tools/world')
-rwxr-xr-x | Tools/world/world | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/Tools/world/world b/Tools/world/world index 0c41d4f..4a57b83 100755 --- a/Tools/world/world +++ b/Tools/world/world @@ -265,6 +265,13 @@ nameorgs = { "net": "networking", "org": "non-commercial", "int": "international", + # this isn't in the same class as those above, but for some reason (of + # which I am not aware), `uk' is the common practice country code for the + # United Kingdom. AFAICT, the official `gb' code is routinely ignored! + # If you have a clue as to why this is, or if there is an official + # document describing this, please let me know. ISO3166 certainly makes + # no mention of this. + "uk": "United Kingdom (common practice)", } |