1 This directory contains miscellaneous code for translate
2 It includes code written specifically for translate
3 and also other modules that are included with Python 2.3
4 but have been included here for backwards compatibility with
5 earlier versions of Python.
7 translate is distributed under the GPL; some of the code in this
8 directory is distributed under other open source licenses.
9 Please see each relevant file for details...
11 quote.py is a standard translate module that is used for quoting/unquoting
12 and escaping/unescaping strings. It is released under the GPL
14 The csv module is defined in csv.py and _csv.c
15 Since some of this code is in C, it needs to be compiled and installed
16 on your Python distribution if you are using a version of Python before
17 Python 2.3. To do this, run:
19 (This will require the standard C compiler for your operating system)
21 optparse.py is the standard Python command line options parser, previously
22 known as Optik. It also requires textwrap.py which is a standard Python 2.3
23 module, and which is also included here.