On 4/1/06, Jorge Vargas <[EMAIL PROTECTED]> wrote: > > No--they're platform independent, because they are comprised of opcodes > > for the Python virtual machine. They are definitely > > implementation-dependent (CPython only) and version-dependent (.pycs > > compiled with one version of CPython will not work with another > > version), though, > > > so they do depend on your instalation, not OS but your compiler.
If you mean the Python bytecode compiler, then yes... otherwise, it shouldn't matter what C compiler you used to compile Python itself--if it does, then there's a bug in Python (or the C compiler). Within the same version release of Python, bytecode is bytecode. What you can't do, for example, is take a Python 2.4 .pyc and expect it to work correctly under Python 2.2, or vice-versa. -- Tim Lesher <[EMAIL PROTECTED]> --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "TurboGears" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/turbogears -~----------~----~----~----~------~----~------~--~---

