On Sat, Aug 21, 2010 at 6:48 PM, David Malcolm wrote: > I just built Python 3.2a1 into rawhide: > http://koji.fedoraproject.org/koji/buildinfo?buildID=191382 > so the meaning of "python3" in rawhide just jumped from Python 3.1 to > Python 3.2 [cut] > with Python 3.2 onwards you now have a __pycache__ directory: [cut] > The idea is to permit sharing of modules between multiple > parallel-installable versions of Python. > I am not sure that I understood this correctly. There will be a __pycache__ directory in the following structure: /usr/lib/python3.2/site-packages/foo/foo.py /usr/lib/python3.2/site-packages/foo/__pycache__/foo.cpython-32.pyc /usr/lib/python3.2/site-packages/foo/__pycache__/foo.cpython-32.pyo But now when the user installs python-3.3, he will have /usr/lib/python3.3/site-packages/foo/foo.py /usr/lib/python3.3/site-packages/foo/__pycache__/foo.cpython-33.pyc /usr/lib/python3.3/site-packages/foo/__pycache__/foo.cpython-33.pyo The two directories have different roots /usr/lib/python3.*/ and the module foo.py is not shared. Where is the catch? Orcan -- devel mailing list devel@xxxxxxxxxxxxxxxxxxxxxxx https://admin.fedoraproject.org/mailman/listinfo/devel