diff options
author | Fred Drake <fdrake@acm.org> | 2002-06-17 17:55:30 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 2002-06-17 17:55:30 (GMT) |
commit | fc8341d0706bcf41711b289897cf7b8c4b7178a7 (patch) | |
tree | 2e5d24c4adc5e28fd89885b2d874a2a002f2da54 /setup.py | |
parent | 8311518a5868acef791d5d04853a6d047d20e8ac (diff) | |
download | cpython-fc8341d0706bcf41711b289897cf7b8c4b7178a7.zip cpython-fc8341d0706bcf41711b289897cf7b8c4b7178a7.tar.gz cpython-fc8341d0706bcf41711b289897cf7b8c4b7178a7.tar.bz2 |
Update description of the Expat library.
Closes SF bug #556370.
Diffstat (limited to 'setup.py')
-rw-r--r-- | setup.py | 15 |
1 files changed, 9 insertions, 6 deletions
@@ -653,12 +653,15 @@ class PyBuildExt(build_ext): # Interface to the Expat XML parser # - # Expat is written by James Clark and must be downloaded separately - # (see below). The pyexpat module was written by Paul Prescod after a - # prototype by Jack Jansen. Source of Expat 1.95.2 is included - # in Modules/expat. Usage of a system shared libexpat.so/expat.dll - # is only advised if that has the same or newer version and was - # build using the same defines. + # Expat was written by James Clark and is now maintained by a + # group of developers on SourceForge; see www.libexpat.org for + # more information. The pyexpat module was written by Paul + # Prescod after a prototype by Jack Jansen. Source of Expat + # 1.95.2 is included in Modules/expat/. Usage of a system + # shared libexpat.so/expat.dll is not advised. + # + # More information on Expat can be found at www.libexpat.org. + # if sys.byteorder == "little": xmlbo = "12" else: |