Tagged Questions
-1
votes
1answer
31 views
Python debugging. help a noob :( [closed]
I have started to learn python and I need some help. anything will help
I use:
komodo edit <- write the python
terminal (my editor) <- bug testing
def score():
question_1 = "null" #var
...
0
votes
1answer
11 views
PyDev program output in debug console
Please bear with me if this is very basic, as I'm quite new to PyDev. Is there some way to redirect the program output to a PyDev debug console? I'm referring to something like in Matlab. As of now, I ...
0
votes
1answer
17 views
Temporarily entering the debugger in IPython
In IPython, with %pdb enabled, I can hit Ctrl-C and be dropped to a Python debugger console at the exact point I stopped the program.
However, at this point the program is entirely stopped, and I ...
0
votes
1answer
29 views
Python implementing rod cutting algorithm
Im practicing for dynamic programming
and im new to python as well.
When I try this in the shell.
def cut_rod(p, n):
if n==0:
return 0
q = float('-inf')
for i in range(n):
...
1
vote
1answer
45 views
Django: manage.py does not print stack trace for errors
In Django, most of the time when I run manage.py and it encounters an error, I don't get the full stack trace for the error, just the text of the exception, making it very hard to debug. Example:
...
2
votes
2answers
62 views
How do I fix my Python sudoku solver bug? [closed]
THIS IS FROM MY HOMEWORK
Hello. I had to make a python sudoku solver and this is what I came up with.
http://pastebin.com/JRKaqSed (includes my input and the output I get)
However, when I run it, ...
0
votes
1answer
21 views
Is there any ipdb print pager?
I am using ipdb to debug a python script.
I want to print a very long variable. Is there any ipdb pager like more or less used in shells?
Thanks
0
votes
0answers
28 views
How to debug Django unit tests?
I have a Django unit test, and I want to put print statements in it for debugging purposes but apparently django is suppressing them. How else can I print the value of a variable? I may be able to ...
2
votes
1answer
36 views
How can I trace a multi-thread software?
I have a multithreading client-server software and it's a bit hard to debug when 10 client is connected. I have a few questions regarding the tracing.
How can I trace a only a certain file or class ...
0
votes
2answers
83 views
Python Visual Debugger
I know there are a thousand posts on debugging in Python but I can't find what I am looking for....a visual debugger. For example:
one@localhost ~ $ cat duh.py
import pdb
class ...
2
votes
1answer
32 views
How to use pdb to debug module written by C?
I am using pdb to debug a python program, and the python program uses a module written by C. I want to use "step" command to enter the function in the module written by C, but I find this operation ...
0
votes
0answers
29 views
Python WaitForDebugEvent & ContinueDebugEvent (Gray Hat Python)
I'm reading 'Gray Hat Python.'
There's an example where we get the thread of the process and dump all the register values.
I copied down the source from the book, and it won't work.
Here's a part ...
1
vote
0answers
46 views
Obtaining profiling information on running python app
If you have a python application in production (i.e not already running under a debugger or profiler), is there any way to attach to the python process/instance and examine it? It would be useful to ...
2
votes
1answer
36 views
How to get uWSGI Python exception message pretty printing?
Would like to know if there is a simple, easy way to have uWSGI pretty print exception messages (for Python specifically, not sure if the settings are particular to Python or not).
Thanks very much!
2
votes
2answers
85 views
How to debug sublime plugins during development
I want to debug my plugin with pdb but it doesn't work. I get these errors
Traceback (most recent call last):
File "./sublime_plugin.py", line 362, in run_
File "./useIt.py", line 14, in run
...
1
vote
1answer
28 views
Finding qualified names that reference a given object
For debugging purposes, we want to obtain all the names under which a given object is known; I want qualified names (i.e., A.x rather than x). Here's our first attempt:
import gc, sys
def ...
-1
votes
2answers
45 views
Python game not working(shop only showing up once) [closed]
I'm trying to make just a simple text game before I go on learning more things, the first part went good, then I tried to add a shop and when the code is run the shop can only be entered once. Here is ...
-3
votes
0answers
62 views
python - What does the output mean?
pdb output:
--Return--
> /home/h/CARDIO/WorkSpace/Chatroom/chat.py(151)on_new_messages()->None
-> self.finish(dict(messages=messages, userinfo=userinfo))
What does the --Return-- and ...
1
vote
1answer
41 views
How to view all the current objects and their immediate methods
I am looking at this tutorial in twisted python.
https://github.com/jdavisp3/twisted-intro/blob/master/twisted-client-3/get-poetry.py
def get_poetry(host, port, callback):
"""
Download a poem ...
0
votes
1answer
39 views
I can't figure out why it keeps terminating. it won't even work with debugger
I'm fairly new to python programming but I like to challenge myself so I made this as a stepping stone for a bigger project... the overall goal of this code is output a word from a list of words in a ...
0
votes
2answers
98 views
Beginner debugging a function
Hi, I am doing an online tutorial for python on codeacademy and i already created a functional pyg latin translator that uses raw_input and turns it into a word in pyglatin, however, when I try to ...
1
vote
0answers
38 views
Debugging *** glibc detected *** python: realloc(): invalid next size without Valgrind
I'm running a server-script in Python, and I'm getting a *** glibc detected *** python: realloc(): invalid next size error every once in a while. I can't debug it with Valgrind, as it won't let me run ...
0
votes
0answers
43 views
Use IPython magic functions in ipdb shell
I want to use IPython magic functions like %paste, %cd in ipdb shell. Is is possible and how?
4
votes
1answer
135 views
Debugging Python with compiled extensions
I use Python with compiled Cython and Fortran extensions (wrapped using modern Fortran's iso_c_binding module and Cython) for number crunching.
So far, I do not have a convenient debugging strategy. ...
-1
votes
1answer
75 views
Making minesweeper in Python and I need help changing the tiles [closed]
I am attempting to recreate minesweeper in Python and as I attempt to run the code in IDLE My question is now that how do I make it to where when the user inputs their coordinates the location changes ...
2
votes
1answer
45 views
Python's sys.settrace won't create c_call events
The documentation for sys.settrace says that it can report calls to c or builtin functions. When I try following program, I expect to see a c_call event, but nothing happens:
import sys
def ...
0
votes
0answers
24 views
FireLogger and FirePython, are they currently working with Django?
Coming from PHP i always debugged using FirePHP. I came across FirePython but i couldn't get this to work on the current version of Firebug and FireFox ( although the PHP version works fine ).
Anyone ...
0
votes
0answers
30 views
python interactive console in debugger is not “interactive”
I am running Pydev 2.7.3 with Eclipse 1.5. I'm trying to use the interactive console with the debugger (i.e. what I would like to do is insert a breakpoint in a file, run the file up to that ...
1
vote
5answers
75 views
How to print commands in Python?
I'm not in the programming area but I recently got interested in Python. I was writing some functions but for debugging I need to see what commands are running. For instance:
def foo():
for i in ...
0
votes
2answers
34 views
Python normalized pathname with a special case
consider the following example
#junk path ending with a test file
test = "C:\\test1/test2\test3.txt"
with import os and os.path.abspath in can normalize the pathname
test_norm = ...
0
votes
1answer
43 views
Python/Tornado - time.sleep() executed before requesthandler.write()
Code:
self.write("<html><head></head>"+
<body><h1>You are now logged out.</h1></body></html>")
sleep(1)
The content of self.write() will be ...
0
votes
0answers
40 views
Debug a Python C++ extension from Eclipse (under Linux)
I have a C++ project that is called in Python (via boost-python) and I want to debug the C++ code from python process. How can I do that? In Windows with Visual Studio I can use the functionality ...
2
votes
2answers
61 views
Python programming: emulate network and debug
I learn network programming on Python: write client-server and client-client software with TCP, UDP, ICMP, ARP, etc protocols.
I need a tool for emulating network with N hosts with following ...
0
votes
2answers
53 views
python undefined variable
Why the variable freq is not defined in the method update?
I am calling the method candle on init and this method contains freq?
class candle:
def __init__(self):
self.freq = None
...
4
votes
2answers
93 views
How to debug Django app running on Heroku using a remote pdb connection?
To debug a bug I'm seeing on Heroku but not on my local machine, I'm trying to do step-through debugging.
The typical import pdb; pdb.set_trace() approach doesn't work with Heroku since you don't ...
0
votes
0answers
37 views
Django app doesn't log errors to file
I need my development server to log Python errors to a log file.
My own log.error("test") calls are working and logging correctly, but e.g. runtime errors from Python are not.
logging in ...
1
vote
2answers
50 views
Opening an IPython shell on any (uncatched) exception
I have defined the following (embedded) shell in Python:
from IPython.config.loader import Config
cfg = Config()
prompt_config = cfg.PromptManager
prompt_config.in_template = 'N.In <\\#>: '
...
0
votes
0answers
30 views
Activating set_trace() selectively at runtime in pdb or sisters
In pdb/ipdb/pudb, is there a trick whereby I can selectively activate set_trace() statements during runtime?
I'm debugging somewhat complex code with probabilistic behavior, and I would like to ...
0
votes
2answers
72 views
Calling functions as if in own caller?
I'm trying to replicate an error-checking pattern that I often use when programming in C, in Python. I have a function check as follows:
def check(exceptions, msg, handler):
def wrapped(func, ...
1
vote
1answer
18 views
is there a way to print debug info to the log?
I've got a python program that passes some info to a site for parsing. it's not working but I'm not sure why. is there a way to put diagnostic info at certain places that will print to the log?
0
votes
0answers
49 views
Weird bug in python project
I'm working on a big project in Python, and I've run into a bizarre error I can't explain. In one of my classes, I have a private method being called during instantiation:
def _convertIndex(self, ...
1
vote
2answers
105 views
Debug python flask application in vim
Does anybody debug flask application in vim using this one for example.
What I want:
I want to set break point in controller method for example
def login():
(breakpoint)>> some code
...
...
...
0
votes
4answers
65 views
Debugging with breakpoints from console in Python
I'm trying to migrate from Matlab to python. One of the things that is nice about Matlab is that when debugging I can put a breakpoint in some code and do something to call that code form the command ...
0
votes
1answer
99 views
Django - Authentication using REMOTE_USER - How to test in dev server?
I want to use django.contrib.auth.middleware.RemoteUserMiddleware for authentication as outlined here:
https://docs.djangoproject.com/en/dev/howto/auth-remote-user/
Question is, how can I test this ...
0
votes
1answer
68 views
Conversion issue - Python?
I have been debugging my script and I have narrowed down my issue to a few lines of code that I believe to be causing my problem. I'm reading in data from 3 csv files, extracting data from a sproc in ...
0
votes
0answers
101 views
How to debug Python script with arguments - Aptana/Pydev
I'm wanting to debug my Python script that passes in parameters but I'm having a hard time configuring the IDE to accept those parameters and run my script. I have the following parameters/arguments ...
0
votes
0answers
32 views
How to use debugger to generate a trace file?
My work is to instrument a python application such that it generates a trace file consisting of the necessary dynamic information. I am using a python script to instrument the source code. I have ...
0
votes
1answer
69 views
Raise an error in Python, exclude the last level in stack trace [duplicate]
So, I am developing this class that has an indexer. I'd like to throw (or "raise", in Python lingo) an IndexError exception. Well, that's pretty trivial,
if errorCondition:
raise ...
1
vote
2answers
83 views
How to prevent lxml.etree.HTML( data ) from crashing on certain type of data?
I'm running etree.HTML( data ) like below for lots of different data contents. With a specific data conent, however, lxml.etree.HTML will not parse it, but go into an infinite loop and consume 100% ...
0
votes
0answers
62 views
How do I get debug symbols linked to a python core dump of my shared object?
I have python app that uses a shared library. This is my shared object, with sources and debug build.
The shared object gives a core dump on a running process and I try to debug it. I see all the ...


