Tagged Questions
2
votes
3answers
185 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?
3
votes
3answers
53 views
Python Interpreter Mode - What are some ways to explore Python's modules and its usage
While inside the Python Interpreter:
What are some ways to learn about the packages I have?
>>> man sys
File "<stdin>", line 1
man sys
^
SyntaxError: invalid syntax
...
1
vote
0answers
55 views
Error when configuring Python interpreter for PyDev in Eclipse
I just recently installed the PyDev 2.6 plugin for Eclipse (I run Eclipse SDK 4.2.1) and when I try to configure the Python interpreter to the path: > C:\Python27\python.exe , it gives me an "Error ...
0
votes
2answers
79 views
Python console in Eclipse
I'm unable to run a python console inside Eclipse. I've downloaded Pydev, set up an interpreter and a PYTHONPATH and imported a project, a Django project. I set up the project as a Django one and then ...
1
vote
2answers
140 views
How can I import a .so module in PyPy?
I am green to PyPy, and I use PyPy1.9 to interpret my Python code.
As you know, the CPython interpreter can import a module packaged in a .so file, which is compiled from C/C++ codes.
But PyPy1.9 ...
1
vote
0answers
81 views
Where to start on a server-side interpreter
I am experienced in php and python and have slight experience in C#. I have crated a compiler in python and now would like to work on a server-side language. However, I don't want to crate a compiler ...
0
votes
1answer
43 views
Is there a way to check if a given string, when run with eval() actually can run in the python interpreter?
I have a list of strings and i figured there might be a way for the parent program to tell if one of these child programs compiled successfully in the python interpreter when using eval() instead of ...
1
vote
3answers
77 views
decorating a class - decorate once forget about it?
I succeeded in creating a decorator that decorates any types of classes, adding a standard interface to them all, for easy access, integration, etc...
I have resisted using metaclasses, as literature ...
0
votes
3answers
51 views
Python object names and the interactive interpreter
When I define a class and create an instance of it, entering the instance name into the shell returns a memory location. No surprise there, but does anybody know how to define a class in such a way ...
0
votes
0answers
38 views
Run part of a Bash shell in a different interpreter language? [duplicate]
Possible Duplicate:
embedding short python scripts inside a bash script
I am trying to run a Bash shell with different languages at different bits. Somewhat like shown bellow
#!/bin/bash
...
1
vote
0answers
60 views
Why does the python debugger in python 2.7 32-bits under windows abbreviate error messages?
Sometimes the debugger abbreviates a run-time error message as shown below
(Pdb) n
> p:\hhu\updater4.py(136)make_and_execute_insert()
-> result = dbops.do( db.cursor, query.encode( 'utf-8' ) )
...
7
votes
1answer
1k views
Sublime Text 2 - running selected python code in the interpreter
While editing a python script in the Sublime Text editor, I would like to run the script line by line, or block after block in the embedded interpreter.
Is there a convenient way how to do that? ...
1
vote
3answers
343 views
Execute file in ipython interpreter
I'm trying to run a file inside the ipython interpreter.
The documentation makes this sound as simple as ipython file.py in the shell or %run file.py inside the interpreter itself. However, I want to ...
2
votes
2answers
90 views
Python dictionaries getting re-arranged in interpreter? [duplicate]
Possible Duplicate:
Python dictionary, keep keys/values in same order as declared
I'm going through some exercises on code academy when I noticed the dictionaries I was creating inside my ...
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? ...
1
vote
3answers
138 views
Setting default interpreter for a python script
I am using a module that can only be found in python 2.7, so when I run my script I have to specify python2.7 script instead of just script. I know there are bigger issues out there, but still I was ...
0
votes
4answers
246 views
Developing an interactive shell
I have an application; to interact with it I have to develop an interactive shell. The shell will take input from user and dispatch it to the server, which will process and return a response.
In the ...
-1
votes
2answers
65 views
run interpreter after execute bash python
Obviously it helps to have the interpreter to debug, but I prefer to execute commands in terminal. Is there any way to make it run the python program, then startup an interpreter with the variables ...
2
votes
3answers
1k views
How do I change my build configuration so that cmd points to actual location of the python interpreter?
When I try to run python or any language through Sublime Text 2, all it says is
[Error 2] The system cannot find the file specified
[cmd: [u'python', u'-u', ...
2
votes
1answer
232 views
Running bash commands inside a Python script
I want to create a simple "virtual bash" script using Python, that takes commands in and returns the stdio output. Something like this:
>>> output = bash('ls')
>>> print output
...
4
votes
4answers
180 views
Why does there seem to be tension between the simplicity of a language and execution time? [closed]
It seems to me that languages that are quite simple to use (i.e. Python) often have slower execution times than languages that are deemed more complex to learn (i.e. C++ or Java). Why? I understand ...
1
vote
2answers
64 views
forgetting to declare variables
If inside a loop, is it possible to instantiate objects to be manipulated during subsequent iterations of the loop, and still available when the scope of the loop has been left?
Here is a simple ...
3
votes
3answers
134 views
How do scripting language interpreters reference their underlying functions?
When it comes to script interpreters, like Rhino, Google V8, Python, etc. - is there any general approach to determining the underlying native methods, given only a string of scripting language?
At ...
-3
votes
2answers
250 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 ...
0
votes
1answer
29 views
wxGTK can not Runnable
import wx
import wx.lib.buttons
import wx.lib.agw.customtreectrl as CT
from PLCControler import ITEMS_VARIABLE, ITEM_CONFIGURATION, ITEM_RESOURCE, ITEM_POU
from utils.BitmapLibrary import GetBitmap
...
2
votes
2answers
97 views
python interpreter returning blank dictionary after calling imported function
I'm trying to learn python (with a VBA background).
I've imported the following function into my interpreter:
def shuffle(dict_in_question): #takes a dictionary as an argument and shuffles it
...
1
vote
2answers
138 views
django: resolve variables in custom template
I'm making a custom template tag, and I want to be able to pass it in any sort of value. The use case is something like this:
{% include_with_args "path_to_template.html" simple_var an_object.foo.bar ...
2
votes
1answer
123 views
Is it possible to add arbitrary keybindings to the Python interpreter?
In the python interpreter we can use
readline.parse_and_bind('tab: complete')
to enable tab completion
Is it possible to bind arbitrary keys to our own functions?
I'd like to bind CTRL+E and ...
2
votes
0answers
281 views
Embedding a python interpreter to c++ [closed]
You'll have to forgive me if this question has been answered, but I haven't been able to find anything that specifically talks about what I need.
I am attempting to embed a python interpreter into a ...
2
votes
2answers
131 views
Python inheritance and instantiation
I struggle to understand a point in the code by Peter Norvig, 'Even better Python Lisp interpreter', here.
In eval function, aimed at parsing, he is doing the test isanstance(x,Symbol). Class Symbol ...
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 ...
3
votes
3answers
119 views
Python Timer crashes the interpreter
I'm new here and this is my first question. I'm making a game in Python 3.2.3 and I've come to a problem where a Timer object sometimes crashes the interpreter after calling it's start() method (it ...
3
votes
1answer
175 views
Jython as in-game console for java game
I love both python and java and I'd love to have console in my game powered by python (jython). Handling input-output from PythonInterpreter is amazingly easy.
But right now, I need to access ...
0
votes
3answers
144 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 ...
2
votes
2answers
476 views
How to embed a Python interpreter on a website
I am attempting to build an educational coding site, similar to Codecademy, but I am frankly at a loss as to what steps should be taken. Could I be pointed in the right direction in including even a ...
1
vote
3answers
299 views
pwd from bash from python expand symlinks
I have a shell and I use pwd to show in which directory I am. but when I'm in directory that it's a symlink it show original directory not the symlink
import subprocess as sub
def execv(command, ...
0
votes
1answer
47 views
Can Python 2.x save the globals from the interpreter to a file?
Writing things like the bound variables with current values and names, already entered code of defined functions, imports at the beginning, etc., to a .py file? (on win32, just for the lack of built ...
1
vote
1answer
135 views
Interpreting Javascript from Python
I want to be able to interpret or compile Javascript files, catching errors, etc. from Python programs. Javascript Files use the following syntax for ex.:
var a;
function Mul (){
prompt(b);
...
0
votes
1answer
67 views
regex:finding a forbidden char in python code
I need to use a regex will determine if a single line of python code contains an illegal char
'$'. But its allowed to appear in a comment or as part of a string.
Meaning:
"legal char $" illegal $ ...
2
votes
1answer
532 views
Eclipse + Pydev wont keep interpreter setting within the same session.
I'm attempting to get eclipse running as something more powerful than a colored text editor so that I can do some Maya scripting. There's literally nothing fancy about this setup, it just doesn't keep ...
1
vote
4answers
416 views
Reload in Python interpreter
$ python
>>> import myapp
>>> reload(myapp)
<module 'myapp' from 'myapp.pyc'>
>>>
ctrl+D
$ python
>>> from myapp import *
>>> reload(myapp)
...
2
votes
2answers
163 views
Debugging code in the Python interpreter
I like testing functions in the Python interpreter. Is it possible to debug a function in the Python interpreter when I want to see more than a return value and a side effect?
If so, could you show ...
5
votes
4answers
1k views
How do I run a python interpreter in Emacs?
I just downloaded GNU emacs23.4, and I already have python3.2 installed in Windows7.
I have been using Python IDLE to edit python files.
The problem is that I can edit python files with Emacs but I ...
2
votes
7answers
311 views
A language that satisfies this criteria?
I have done some Java programming and very little C and PHP programming as well. Recently I started to learn Python because the language seemed interesting.
But several posts on SO seemed to point ...
7
votes
3answers
4k views
PyCharm. /usr/bin/python^M: bad interpreter
Cannot figure out, where to change EOF in PyCharm.
My scripts, started with:
#!/usr/bin/python
# -*- coding: utf-8 -*-
Outputs something like this, when I try to run it like executable (chmode +x):
...
0
votes
2answers
120 views
Python code not writing to file unless run in interpreter
I have written a few lines of code in Python to see if I can make it read a text file, make a list out of it where the lines are lists themselves, and then turn everything back into a string and write ...
1
vote
1answer
86 views
Keeping assert despite the -O (optimize) flag
I place many checks of the program state, whose failure would indicate a bug in the code. In such cases, I'd love to use assert condition simply because it reads nicer than if not condition: raise ...
1
vote
3answers
440 views
C/C++ Python interpreter
What I'm trying to do is write an app in C/C++ which will allow users to enter a Python script, which the app will then interpret & run. The aforementioned script will have a separate API that ...
10
votes
7answers
786 views
sandboxing/running python code line by line
I'd love to be able to do something like these two are doing:
Inventing on principle @18:20 ,
Live ClojureScript Game Editor
If you don't wanna check the videos, my problem is this:
Say I had this ...
5
votes
1answer
274 views
Window doesn't show in python interpreter in GTK3 without Gtk.main()
In GTK2, I enjoyed building a gui in the interpreter (ipython or plain python) "on the fly" and seeing the changes in real time like this:
>>> import gtk
>>> win = gtk.Window()
...
