Tagged Questions
2
votes
0answers
102 views
Python compiler for simple language to java vm code algorithm
I have a simple language that I am trying to write a compiler for (yes it is homework) to compile a simple language I shall describe if necessary to java vm code.
It currently works pretty well I've ...
2
votes
3answers
187 views
Are there any Stackless Python like projects for other languages (Java, Lisp, Haskell, Go etc) [closed]
Well thats the question. Are there any projects for other languages which try to imitate what stackless python is doing for python?
4
votes
1answer
159 views
How to create a standalone executable file from Python 3 script?
I've made a program lately that uses Tkinter in Python 3.3. I would like to distribute the program as a simple executable file that does not require an installation. I've had a lot of experience using ...
-1
votes
1answer
63 views
Recommend a Python Compiler on Win7x64
I've been teaching myself Python from Codecademy.com, but their site is acting wonky and the built-in compiler on some lessons is hosed. I just installed Python 3.3.1 on my system, but for the life ...
1
vote
2answers
46 views
Building compiler in Python: determining integer values
I'm building a compiler for a language called Jack (similar to Java). I'm working on my tokenizer, but I'm having trouble trying to determine if a token in the file is an integer. Here is how I'm ...
0
votes
1answer
63 views
Compiling python into a shared library
I have a bunch of python code that I would like to "compile" into a shared library with a C interface that can be linked with other C/c++ programs and work without depending on too many other libs ...
2
votes
2answers
81 views
Compiler error while installing py-bcrypt in Windows 7
I need to install the Flask module flask-bcrypt which requires py-bcrypt. When I try to install it, an error occurs at:
C:\Users\Param\Downloads\py-bcrypt-0.3>python setup.py install
running ...
1
vote
1answer
106 views
Change build c compiler
I'm trying to build python 2.6.8 from source code on an AIX 6.5 machine, but several modules can't build successful. In the build process, there is a XLC man page jumps out and stucks. I have to press ...
0
votes
0answers
37 views
How to compile a python program with a resource file
I'e created a python program using python card's resource editor, I'm trying to use cxfreeze to convert .pyw to .exe but i get the following error when trying to run the .exe file,
no resource file ...
3
votes
1answer
60 views
how to check which compiler was used to build Python
Is there a way to tell which compiler was used to build a Python install on a specific linux machine?
I tried using ldd on the Python dynamic libraries [1], but I didn't manage to understand if it ...
-2
votes
1answer
95 views
Select language for text processing [closed]
I'm trying to write text processor with lexer and parser for programming languages. I have written poor functional prototype in C# but its flexibility is insufficient and I want to rewrite it.
For ...
-1
votes
2answers
193 views
Undecompilable Python
It is possible to decompile .pyc files: Decompile Python 2.7 .pyc
My question is if it is possible to compile Python to be undecompilable. I am going to release C++ application with Python embedded ...
1
vote
1answer
260 views
Obfuscating python bytecode through interpreter mutation
Actually, Dropbox made it very well, they were able to secure their desktop application made in python; I researched this a lot, but no good solution better than obfuscation, which is not very secure ...
1
vote
1answer
84 views
Virtual table in llvm (llvm-py)
I'm using llvm-py to create a DIY compiler for some artificial and need to have a virtual method table in the globe scope. My concept is to have several arrays of function pointers (one for each ...
0
votes
1answer
77 views
How to add keywords to tokenizer?
I am using generate_token function to tokenise a particular code . The problem is I am not able to add "print" and "input" as keywords. It is returning them as NAME rather than keywords. How do I add ...
4
votes
2answers
336 views
Writing a Python compiler for practice [closed]
Recently I've been reading quite a bit about CPUs and architectures; mainly opcodes, Integrated Circuits, etc. I've been a python developer for a few years, and I'd like to get some practice in ...
4
votes
2answers
112 views
Need a tool to detect the type of variables in C code
I am in a project developing specific source-to-source compiler. At this stage, I need to find the type of variables in a C source code. For example, if the code is c[i]=j*f[k]+p; I should find the ...
1
vote
1answer
144 views
How does a programming language translator work? [closed]
I am curious as how cross-compilers such as Pyjamas work. Do they simply have a list keywords and line by line replacing each word with the translated code? I want to understand.
I apologize for my ...
0
votes
1answer
436 views
Unable to Install Python Packages on a Mac (gcc-4.0 error) [duplicate]
Possible Duplicate:
How to use/install gcc on Mac OS X 10.8 / Xcode 4.4
I cannot install any Python packages using easy_insall or pip, because of the following error. I've looked ...
1
vote
1answer
133 views
How can I run online python code that requires a set of modules?
How can I run online python code that owns/requires a set of modules? (e.g. numpy, matplotlib) answers/suggestions to questions 2737539 y 3356390 about interpreters, are unuseful because those ...
1
vote
1answer
242 views
LLVM IR to Python Compiler
Is there any tool to convert the LLVM IR code to Python code?
I know it is possible to convert it to Javascript (https://github.com/kripken/emscripten/wiki), to Java ...
1
vote
3answers
44 views
Order of frames being pushed on the stack
Suppose you have the following code.
def square(x):
print ("Just before square returns")
for k in dir():
print ("{0} -------> {1}".format(k, eval(k)))
return x*x
def cube(x):
...
4
votes
1answer
332 views
Difference between runtime dynamic binding and class inheritance
I am trying to clarify the concept of runtime dynamic binding and class inheritance in dynamic languages (Python, ruby) and static type languages (java, C++). I am not sure I am right or not.
In ...
2
votes
2answers
108 views
Compiler Python, why are some wrong things overlooked?
I wrote a Python routine with a mistake in it: false instead of False. However, it was not discovered at compilation. The program had to run until this line to notify the wrongdoing.
Why is it so? ...
-3
votes
2answers
251 views
Interpreter design in python [closed]
I am new to pytohn, and I want to make a small interpretor/compiler with it. just a hobby project initially. I would like to know how good is it in comparison to c/c++ to accomplish such a job? it has ...
2
votes
3answers
647 views
CoffeeScript compiler without node.js?
I'd like to use CoffeeScript(CS) and the CS Compiler but without having to install Node.js.
I saw that the core compiler of CS is in JavaScript, so there's no need for Node.js to be installed, but I ...
2
votes
3answers
312 views
Writing first interpreter with Python - choice of OCaml language
I am reading code for Scheme interpreters with Python by P. Norvig, and I would like to try to write an interpreter with Python. This is properly the subject of post: What language can a junior ...
2
votes
1answer
113 views
Is it possible for the Python compiler to optimize away some integer arithmetic?
Inspired by this question about Python caching small integers.
Is it possible for the Python compiler to replace (0 - 6) with -6 at compile time? The code below suggests that it does not. If it is ...
0
votes
3answers
145 views
Python interpretation model in comparison to direct and virtual machine compilation
I have been compiling diagrams (pun intended) in hope of understanding the different implementations of common programming languages. I understand whether code is compiled or interpreted depends on ...
7
votes
2answers
140 views
is there any compiler that can convert regexp to fsm? or could convert to human words?
Something that can convert
r"a+|(?:ab+c)"
to
{
(1, 'a') : [2, 3],
(2, 'a') : [2],
(3, 'b') : [4, 3],
(4, 'c') : [5]
}
or something similar
and accepting in 2 or 5
0
votes
1answer
33 views
Launching a client-side complier from a browser via anything
I'm currently working on a web based educational tool where student can look at example of code in a browser and edit the code in the browser. I have been trying to implement a system where by they ...
-1
votes
2answers
250 views
How to compile a python program? [duplicate]
Possible Duplicate:
Compiling Python
I would like to know if it is possibl to write a program in Python and compile it into an executable?
I mean actual compiling, not interpreting.
The ...
3
votes
3answers
681 views
How can I print out the string “\b” in Python
In my compilers class, I decided to write my compiler in Python since I enjoy programming in Python, though I encountering an interesting issue with how characters are printed. The lexer I'm writing ...
2
votes
1answer
382 views
Set default compiler for linking C code in Python package
I'm trying to compile a Python package which has some Cython-generated C code, and I'm running into:
gcc: error: x86_64: No such file or directory
which indicates that the gcc compiler is too ...
0
votes
5answers
106 views
Looking for a Python editor that will let me collapse functions
I really loved this feature when I used Eclipse for Java programming, but I can't find the same functionality for a Python editor. IDLE and Pyscripter are nice, but they don't help in this area.
...
2
votes
3answers
161 views
What are the reasons for not hosting a compiler on a live server?
Where I currently work we've had a small debate about deploying our Python code to the production servers. I voted to build binary dependencies (like the python mysql drivers) on the server itself, ...
1
vote
2answers
249 views
Python 3.2 Grammar Specification - Function Call
This is in reference to Python 3.2. Pertinent grammar rules are as follows (http://docs.python.org/py3k/reference/grammar.html):
power: atom trailer* ['**' factor]
atom: ('(' ...
0
votes
3answers
78 views
Does ANTLR provide semantics
I am currently using a Python 2.5 sample from the ANTLR website. I'm actually wondering if the grammar already produces semantics as well.If there is none, what can I do or what can I use(tools) for ...
0
votes
4answers
84 views
How do I get a list of function instances for a python source file?
Let's say I have a file called example.py with the following content:
def func_one(a):
return 1
def func_two(b):
return 2
def func_three(b):
return 3
How would I get a list of ...
5
votes
1answer
590 views
Changing the icon of the produced .exe, py2exe
Ive been googling this however none of the results worked for me.
Here is my setup file
setup(
windows = [
{
"script": "start.py",
"icon_resources": [(1, "myicon.ico")]
}
],
...
4
votes
2answers
212 views
Is that possible to develop a ACM ONLINE JUDGE system using NODE.JS(or PYTHON)?
I'm a newer and if the question is so easy I apologize for that.
Assume I want to dev a classical online judge system, obviously the core part is
get users' code to a file
compile it on server
run ...
0
votes
2answers
148 views
Is pyparsing table-driven? If not, can you recommend a parser that is?
Is pyparsing a table-driven, predictive top-down parser or a backtracking, top-down one? Google hasn't turned up any results for me.
If it's not a table-driven, predictive top-down parser, can ...
4
votes
5answers
374 views
“Compiling” python script
I'm trying to send a python script I wrote on my Mac to my friends. Problem is, I don't want to send them the code that they can edit. How can I have my script change from an editable text file, to a ...
1
vote
3answers
696 views
Is it possible to compile c code using python?
I want to build a python program that get as input a path to .c file and then it compile its.
The program will output OK to the screen if the compilation is sucessful , and BAD otherwise.
I'm been ...
5
votes
1answer
234 views
What thing I will need for creating a front end for Python based on LLVM architecture?
I'm new to compiler design. I know the basics of compiler design. I want to develop a frond end which take a python program as input and using LLVM libraries and LLVM JIT compiler produces an output. ...
10
votes
5answers
4k views
If-Else-Return or just if-Return?
Suppose I have an if statement with a return. From the efficiency perspective, should I use
if(A > B):
return A+1
return A-1
or
if(A > B):
return A+1
else:
return A-1
Can ...
2
votes
2answers
353 views
Speed up a compiled python program?
I have quite a 'heavy' python program that I would like compiled to an exe.
The program has a decent amount of imports, but using the PyQT4 framework, I load these imports whilst a splashscreen is ...
1
vote
1answer
206 views
Creation Of Simple LR Parser Closure items
Suppose The G (augmented Grammar):
E' - > E
E - > E+T|T
T - > T*F|F
F - > (E)|id
So in one of the levels of creation of the dfa , I had reached to this :(I6 in dragon book)
I6 ...
0
votes
3answers
174 views
Is there a 3rd party compiler for python?
I want to compile python prototypes without having to re-code them in other languages so that i can use them in user machines (without python installed).
Does any one know a 3rd party compiler i can ...
3
votes
1answer
336 views
Zephyr ASDL (Abstract Syntax Description Language)
Question:
What is the Zephyr ASDL and how does it relate to other compiler technologies like lexers and parser generators?
(I would appreciate it if you were reasonably complete, but point to other ...




