Greetings: Could anyone explain why there are so many discrepancies between Python-2.7.2-12 and Python-3.3.02? This is from Python-3.3.0a2: ------------------------------------------ [Frog@DancingSquirrels Documents]$ python3 Python 3.3.0a2 (default, Apr 13 2012, 16:55:12) [GCC 4.7.0 20120322 (Red Hat 4.7.0-1)] on linux Type "help", "copyright", "credits" or "license" for more information. >>> import sysconfig >>> for pathname in sysconfig.get_path_names(): ... print('%s = %s' % (pathname, sysconfig.get_path(pathname))) ... confdir = /etc doc = /usr/share/doc/{distribution.name} libdir = /usr/lib info = /usr/share/info icon = /usr/share/pixmaps platstdlib = /usr/local/lib/python3.3 include = /usr/local/include/python3.3m config = /etc/{distribution.name} purelib = /usr/local/lib/python3.3/site-packages datadir = /usr/share appdata.disposable = /var/cache/{distribution.name} platinclude = /usr/local/include/python3.3m appdata.persistent = /var/lib/{distribution.name} appdata.arch = /usr/lib/{distribution.name} platlib = /usr/local/lib/python3.3/site-packages statedir = /var help = /usr/share/{distribution.name} appdata = /usr/share/{distribution.name} data = /usr/local man = /usr/share/man local = /home/Frog/.local/{distribution.name} stdlib = /usr/local/lib/python3.3 scripts = /usr/local/bin >From Python-2.7.2-12 ---------------------------------- [Frog@DancingSquirrels Documents]$ python Python 2.7.3 (default, Apr 13 2012, 14:45:43) [GCC 4.7.0 20120322 (Red Hat 4.7.0-1)] on linux2 Type "help", "copyright", "credits" or "license" for more information. >>> import sysconfig >>> for pathname in sysconfig.get_path_names(): ... print('%s = %s' % (pathname, sysconfig.get_path(pathname))) ... stdlib = /usr/lib64/python2.7 platstdlib = /usr/lib64/python2.7 purelib = /usr/lib/python2.7/site-packages platlib = /usr/lib64/python2.7/site-packages include = /usr/include/python2.7 scripts = /usr/bin data = /usr Of course, I do not know if this is a bug or not, but I though that I would present it here first? I am not talking about about how much more there are in Python-3.3.0a2... I am talking about the architecture??? In 2.7.3, which was packaged by Fedora, has the correct architecture of x86_64. Python-3.3.0a2, which was compiled by me, has the architecture as 32bit ... -- Sincerely yours, Rob G. Healey -- test mailing list test@xxxxxxxxxxxxxxxxxxxxxxx To unsubscribe: https://admin.fedoraproject.org/mailman/listinfo/test