Tagged Questions
The pyc tag has no wiki summary.
14
votes
5answers
3k views
If Python is interpreted, what are .pyc files?
I've been given to understand that Python is an interpreted language... however, when I look at my Python source code I see .pyc files, which Windows identifies as "Compiled Python Files". Where do ...
4
votes
6answers
473 views
Make Python ignore .pyc files
Is there a way to make Python ignore any .pyc files that are present and always interpret all the code (including imported modules) directly? Google hasn't turned up any answers, so I suspect not, ...
3
votes
3answers
422 views
Python: Programmatically compiling a Python package into pyc or pyo files
This is for my test suite.
I have an automatically-generated Python package in a temporary folder. It's all .py files. I want to programmatically compile these into (a) .pyc and (b) .pyo files. (One ...
2
votes
2answers
367 views
Can I deploy Python .pyc files only to Google App Engine?
I'm working on a project utilizing Django on Google App Engine. I've been asked if some of the code can be deployed as compiled only.
So I guess the question is can I upload a .pyc file only that ...
2
votes
3answers
319 views
Changing the directory where .pyc files are created
Is there a way to change the directory where .pyc file are created by python interpreter ?
I saw two PEPs about that subject (0304 and 3147), but none seems to be implemented in the default ...
2
votes
4answers
241 views
Find what is in a PYC file
This may be a noobie questions, but...
So I have a pyc file that I need to use, but I don't have any documentation on it. Is there a way to find out what classes and functions are in it and what ...
2
votes
4answers
431 views
Compilers targeting .pyc files?
Out of curiosity, are there many compilers out there which target .pyc files?
After a bit of Googling, the only two I can find are:
unholy: why_'s Ruby-to-pyc compiler
Python: The PSF's Python to ...
1
vote
2answers
83 views
importing a module in Idle shell
I'm trying to learn python and I'm having trouble importing a module.
I have a .pyc file that I'm trying to import into idle shell called dfa.pyc
I have the file in a folder called xyz.
I navigate to ...
1
vote
3answers
364 views
ImportError: Bad magic number, since OSX Lion
I'm getting this error every time I run any python file in Eclipse using PyDev:
Traceback (most recent call last):
File ...
1
vote
3answers
169 views
Python not interpreting changed files, using obsolete .pyc
Using the Google App Engine to develop in python yesterday it stopped running the current version of the script.
Instead of executing the most recent version it seems to run the previously ...
1
vote
1answer
207 views
How to control where $py.class files go?
When importing modules for the first time, Jython creates $py.class files (Jython equivalent of .pyc) in the same directory as the corresponding .py file.
A problem arises when the process has no ...
1
vote
1answer
135 views
Are pyc files independent of the minor version of python?
Is it possible and safe to load pyc files made with a different minor version of python?
For instance 2.5.1 with 2.5.5?
My guess is that the magic number does not change with minor versions.
If I ...
1
vote
1answer
202 views
Are pyc files independent of the interpreter architecture?
From the tests I've done, with the same version of python (same magic number), a 64 bit interpreter can load pyc files made with a 32 bit version of python. And reciprocally I assume.
But is it ...
1
vote
2answers
472 views
How to import *.pyc file from different version of python?
I used python 2.5 and imported a file named "irit.py" from C:\util\Python25\Lib\site-packages directory. This files imports the file "_irit.pyc which is in the same directory. It worked well and did ...
0
votes
0answers
26 views
Compiling IronPython with pyc - No module named numpy
I have some IronPython code which runs fine from within Visual Studio. It uses numpy. However when I compile it with pyc it compiles successfully BUT when I run it I get a "No module named numpy" ...
0
votes
0answers
44 views
Executing a .pyc file
I need to run .pyc files using python c api. if i do PyImport_Import it executes the script. However, i need to pass a dictionary which will be accessed from within the script. Does ...
0
votes
2answers
58 views
How to use “pycimport” module of Jython?
I want to import a pyc file in Jython, and I was suggested to explore the 'pycimport' module in Jython, but since this is an experimental module , I was not able to get any code examples, I would be ...
0
votes
2answers
119 views
use .pyc files via Jython
I am working on building a web interface for a Python tool. It's being designed using J2EE (Spring).
In the process, I need to make calls to Python functions and hence I am using Jython for the same.
...
0
votes
0answers
75 views
Weird stuff with .pyc
everyone!
I have two files: neural.py and perceptron.py. neural.py is kinda library to implement neural networks, so i do the "import neural" in perceptron.py. In perceptron.py i'm doing some ...
0
votes
2answers
203 views
Make Python import .pyc when run in optimized mode
I have to use some legacy .pyc modules (with no source) but I'm also forced to use python in optimized mode (python -O): so, when trying to import those modules, I get an import error (as python looks ...