Re: Have you embraced Python 3.x yet?
In our company, we still use python-2.5.4, and will be updated to python-2.5.5. I hope we can go to 2.6.x or 3.x, but I'm not sure when. -- http://mail.python.org/mailman/listinfo/python-list
Re: Good Intermediate Tutorials
In my opinion, the python official documents, include the tutorial, language reference, library reference, distributing python modules, also extending and embedding, Python/C API, are all what you need to learn python and use it, as long as you can read into it. Also you can read other python programs. If you want to know more you can read the cpython source itself. Its not too difficult. -- Ray Allen Best wishes! -- http://mail.python.org/mailman/listinfo/python-list
[Python-list] The distutils.sysconfig.set_python_config() function
I've been reading the python document "Distributing python modules", and found this function document in sysconfig module: This function is even more special-purpose, and should only be used from Python’s own build procedures. distutils.sysconfig.set_python_build()<#distutils.sysconfig.set_python_build>Inform the distutils.sysconfig module that it is being used as part of the build process for Python. This changes a lot of relative locations for files, allowing them to be located in the build area rather than in an installed Python. Where is this function? I cannot find it in distutils/sysconfig.py. Thanks. -- Ray Allen Best wishes! -- http://mail.python.org/mailman/listinfo/python-list