summaryrefslogtreecommitdiffstats
path: root/Tools/i18n/makelocalealias.py
Commit message (Collapse)AuthorAgeFilesLines
* Issue #20079: makelocalealias.py now supports installed SUPPORTED file,Serhiy Storchaka2014-10-021-8/+12
| | | | not only source SUPPORTED file in glibc sources tree.
* Issue #20076: Apply optimization in makelocalealias.py repeatedly.Serhiy Storchaka2014-10-021-1/+6
|\ | | | | | | | | Remove just added the sr_rs.utf8@latn alias because it is derived from sr_rs@latin.
* \ Issue #20076: Added non derived UTF-8 aliases to locale aliases table.Serhiy Storchaka2014-10-011-4/+0
|\ \ | |/ | | | | The makelocalealias.py script no longer ignores UTF-8 mapping.
* | Issue #20079: Added locales supported in glibc 2.18 to locale alias table.Serhiy Storchaka2014-10-011-1/+44
|/ | | | | The makelocalealias.py script now can parse the SUPPORTED file from glibc sources and supports command line options for source paths.
* Issue #19936: Added executable bits or shebang lines to Python scripts whichSerhiy Storchaka2014-01-161-0/+0
|\ | | | | | | | | | | | | requires them. Disable executable bits and shebang lines in test and benchmark files in order to prevent using a random system python, and in source files of modules which don't provide command line interface. Fixed shebang lines in the unittestgui and checkpip scripts.
| * Issue #19936: Added executable bits or shebang lines to Python scripts whichSerhiy Storchaka2014-01-161-0/+0
| | | | | | | | | | | | | | requires them. Disable executable bits and shebang lines in test and benchmark files in order to prevent using a random system python, and in source files of modules which don't provide command line interface. Fixed shebang line to use python3 executable in the unittestgui script.
* | Issue #20046: Locale alias table no longer contains entities which can beSerhiy Storchaka2013-12-261-0/+27
|/ | | | calculated. Generalized support of the euro modifier.
* Issue #20027: Fixed locale aliases for devanagari locales.Serhiy Storchaka2013-12-261-0/+6
|
* Issue #20033: makelocalealias.py now works with non-ASCII locales and producesSerhiy Storchaka2013-12-231-5/+5
| | | | the same result as in 2.x.
* Merged revisions 79977 via svnmerge fromAntoine Pitrou2010-04-111-1/+1
| | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r79977 | antoine.pitrou | 2010-04-12 00:32:39 +0200 (lun., 12 avril 2010) | 4 lines Issue #8374: Update the internal alias table in the :mod:`locale` module to cover recent locale changes and additions. ........
* convert shebang lines: python -> python3Benjamin Peterson2010-03-111-1/+1
|
* More 2to3 fixes in the Tools directory. Fixes #2893.Georg Brandl2008-05-161-8/+4
|
* Convert print statements to function calls in Tools/.Collin Winter2007-08-031-7/+7
|
* Whitespace normalization.Tim Peters2005-01-071-2/+1
|
* Correct mapping of Python codec name to C encoding name for UTF-8 (the C libMarc-André Lemburg2004-12-131-0/+4
| | | | | | doesn't seem to like "UTF-8"). Removed the UTF-8 aliases since these should be available for all locales.
* locale.py now uses an updated locale alias table (built usingMarc-André Lemburg2004-12-101-0/+70
Tools/i18n/makelocalealias.py, a tool to parse the X11 locale alias file); the encoding lookup was enhanced to use Python's encoding alias table As sige-effect, this fixes SF bug [ 1080864 ] locale.py doesn't recognize valid locale setting.