The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
2answers
41 views

the outdated script is being executed according to Python traceback

I've encountered a weird issue regrading the tracebacks in python. I've updated some code but while debugging, it's still using the outdated code. detailed traceback as below: Error: Traceback (most ...
0
votes
0answers
62 views

Python Speech Error [Solved]

I have been working all day trying to get a Python program that does various things working. Since I got most of the code for another person, I have been spending most of my time ironing out errors, ...
0
votes
1answer
28 views

Django UnknownTimeZoneError

Recently I was playing around with google app engine and installed the pytz version for GAE (gaepytz-2011h-py2.7 to be more exact). When I'm trying to open my admin for a Django project now I'm ...
1
vote
3answers
251 views

DistributionNotFound error after upgrading pip

In reading about virtualenv here I realized I didn't have pip 1.3+, so I ran pip install --upgrade pip and now when I run pip --version i get the following: Traceback (most recent call last): File ...
0
votes
0answers
38 views

Traceback error on exit using pyqt4

I wrote a simple program on python2.7 + pyqt4: import sys from PyQt4 import QtGui def main(): app = QtGui.QApplication(sys.argv) w = QtGui.QWidget() w.resize(250, 150) w.move(300, ...
0
votes
3answers
64 views

Python callback handlers- better error messages?

I'm using the stomp.py library to get JSON messages from over a network. I've adapted the simple example they give here which uses a callback to provide message handling. But I made a simple error ...
0
votes
2answers
54 views

I'm getting an index error in Python saying that it's out of range, but I'm not sure why

I've created code that's supposed to turn a machine language into an assembly language, but I keep getting an error when I try to run it from the command prompt. The error I'm receiving is: Traceback ...
1
vote
1answer
106 views

Customize traceback from exceptions in Python-based DSL

I'm creating a python-based DSL just for fun. Right now, it just compiles text into an AST that executes python code directly. I mean if I write: a = int(read("input something: ")) b = a**2 It ...
1
vote
2answers
128 views

Django: why i can't get the tracebacks (in case of error) when i run LiveServerTestCase tests?

I'm writing some tests with Selenium. When i run my selenium tests (LiveServerTestCase type) and i have some error in my code (not in the test, i mean in the code executed, like the homepage view i ...
1
vote
0answers
61 views

Django: How to get template debug info to user on syntaxerror

I have a page where users can submit their own template into a textarea, for now it needs to be that simple. However since it is user generated input i need to verify they don't do stuff that breaks ...
5
votes
1answer
97 views

traceback shows up until decorator

This nice little Python decorator can configurably disabled decorated functions: enabled = get_bool_from_config() def run_if_enabled(fn): def wrapped(*args, **kwargs): try: ...
0
votes
1answer
109 views

Python Debug Log Tool to trace execution AFTER program has finished?

I want to build a tool that I can invoke when rolling out new code for testing that will capture and evaluate all of the lines of execution and print them to a file so that it can be traced and ...
0
votes
1answer
66 views

How to see complete traceback?

I have added an assert(0) in a function to understand the sequence of function calls to this function. Ex: def my_func(): ...lines of code... assert(0) ...more lines of code... The ...
0
votes
1answer
53 views

get error when calling call() in Python

I'm using python to run an external program as follows call("/usr/sbin/snif") and I get Traceback (most recent call last): File "<stdin>", line 1, in <module> File ...
2
votes
1answer
60 views

longer stack trace for segmentation fault?

ifort compiled with "-traceback" prints only 10 lines but the segmentation occurred in an inner subroutine that is at least 10 layers within. So, exactly routine where seg-fault occurred isn't ...
0
votes
3answers
291 views

__repr__() returned non-string

So I have a class method with which I would like to draw out the dictionary and it's values: def __repr__ (self): for row in zip(*([ky]+map(str,val) for ky,val in (self.slovar.items()))): ...
2
votes
3answers
410 views

ValueError: unknown url type

The title pretty much says it all. Here's my code: from urllib2 import urlopen as getpage print = getpage("www.radioreference.com/apps/audio/?ctid=5586") and here's the traceback error I get: ...
1
vote
0answers
122 views

Python Traceback info [closed]

I'm new to Python (and programming) and I want a simple program to record keystrokes just for my own information. Example code at: http://www.youtube.com/watch?v=jc_0gcPWSR0 It looks simple but i ...
0
votes
3answers
103 views

Python Traceback and NameError [closed]

I'm very new to programming. I've been trying to learn Python via a book called "Python Programming for the Absolute Beginner". I'm working on classes. I've copied some code from one of the ...
1
vote
3answers
181 views

halt processing of program AND stop traceback?

I have a program that needs to stop processing altogether once a certain condition has been triggered - similar to this question: How do I abort the execution of a Python script? However, in my case, ...
3
votes
2answers
568 views

Get full traceback

How can i get full traceback in the following case, including the calls of func2 and func functions? import traceback def func(): try: raise Exception('Dummy') except: ...
8
votes
1answer
173 views

traceback() for interactive and non-interactive R sessions

I observed a different between an interactive and non-interaction R session about traceback() which I do not understand. For the code below, it will produce an error, but in an interactive R session, ...
1
vote
0answers
53 views

Is there any way to create a stack traceback and log the call stack to a trace log file that will work with visual C++ 6.0?

I have a legacy codebase that has binary-library dependencies on Visual C++ 6.0 and I cannot obtain source code for those binary libraries. So I am stuck debugging crashes on a Visual C++ 6.0 ...
0
votes
2answers
78 views

I keep getting ValueError: frequency must be in 37 thru 32767 on Python with Winsound

This is the code I have: import winsound from myro import * def main(): HftM1 = makeSong("REST 1; REST 1; REST 1; REST 1; REST 1; REST 1; REST 1; REST 1; D4 1/6; F4 1/6; D5 2/3; D4 1/6; F4 1/6; ...
3
votes
1answer
134 views

Need help understanding this error text in python:

Ok so basically I wrote a not very pretty GUI that gives random simple math questions. It works just like I want it to. However the idle Shell spits out red at me every time I click enter. Despite ...
0
votes
2answers
275 views

try-except-raise clause, good behaviour?

I have noticed me writing try-except clauses like the following very much in the past. The main reason for this is to write less code. class Synchronizer(object): # ... def _assert_dir(self, ...
2
votes
3answers
399 views

Python CTRL-C exit without traceback?

Building a simple Python game of "Rock, Paper, Scissors" for learning purposes. I've read some other posts here on exiting from Python without a traceback. I'm trying to implement it but still ...
0
votes
2answers
423 views

Python Traceback Error: Invalid Literal for int() with base 10

I read the answers to the Python questions on traceback errors, alas I don't understand the answers provided. When I run the below code I get a traceback error if the user enters nothing. How can I ...
0
votes
1answer
183 views

Python 3: dealing with stripping lines in binary mode

with the help of SO members, i was able to reach up to as following, Following is sample code, aim is just to merges text files from give folder and it's sub folder and store output as master.txt. but ...
0
votes
1answer
390 views

Python: Traceback codecs.charmap_decode(input,self.errors,decoding_table)[0]

Following is sample code, aim is just to merges text files from give folder and it's sub folder. i am getting Traceback occasionally so not sure where to look. also need some help to enhance the code ...
0
votes
1answer
269 views

Django error when visiting site: syntax error (admin.py, line 4)

I am creating a basic blog with only basic python and the taggit module, it resides at http://127.0.0.1:8000/ (have to put random spaces in so i can submit) when i run ./manage.py syncdb it ...
1
vote
1answer
99 views

Why is this Python traceback bad when executing a delegate function

I have a search class that allows for an event delegate pattern. Other classes can register a function to be called when the search updates. When there is an issue, the traceback is not showing the ...
0
votes
1answer
411 views

Python multi-line expressions and stack trace

We have a simple AssertTrue function used in our python project and I wanted to modify the output it provides to print the code statement from which it was called. The code looks something like this: ...
0
votes
1answer
110 views

waf failed on freeBSD - Traceback (most recent call last)

I am trying to run a waf on freeBSD 7.1 But it fails as:- junos-olive# ./waf Traceback (most recent call last): File "./waf", line 148, in <<module>module> junos-olive# The line 148 ...
8
votes
1answer
171 views

How can I send line number from Python traceback into vim?

I can parse out the paths to the files of a Python traceback, and I can then send those on to Vim using -p on the command line, so that they are opened one file per tab. So I end up with a command ...
0
votes
1answer
349 views

traceback headers : `most recent call last` vs `innermost last`

Could anyone explain when a runtime error would generate a traceback with header most recent call last and when it would generate the header innermost last?
3
votes
3answers
112 views

Are there runtime errors(= exceptions) that do not generate a traceback in python?

Are there runtime errors(= exceptions) that do not generate a traceback? If yes, why do some runtime errors not generate tracebacks? could you give some examples?
1
vote
2answers
90 views

Program for Python that traces back code of a function call or instantiation and nicely prints it all out

Some projects are so big that in order to understand for example a function call requires you to go through many different blocks of code all throughout the project(e.g. in projects with scarcely ...
0
votes
0answers
93 views

GAE 500 Error: descriptor 'capitalize' requires a 'str' object but received a 'NoneType' Traceback

new to Python, I get this error in development with cgitb.enable(), but does not prevent app running and no errors when cgitb.enable() disabled. But my app gets Server Error when uploaded to ...
0
votes
1answer
218 views

Wavelet Transform in Python -> IndexError: list assignment index out of range

I am trying to run this code for a student project: The authors blog with complete Python-code Only that function: def fwt97(s, width, height): ''' Forward Cohen-Daubechies-Feauveau 9 tap / 7 tap ...
1
vote
3answers
265 views

Interpreting Django Traceback

I'm getting the following message. I somewhat understand that my project server cannot find the templates. However, I have no idea exactly what it's complaining about the templates. Would be great to ...
0
votes
0answers
78 views

Hide Django settings value (for Celery) on error page

We're using Celery in our Django project and put a CELERY_RESULT_DBURI value (which carries the password to our database) into our settings.py file. Obviously, I don't feel very safe having the ...
1
vote
2answers
851 views

Error - input expected at most 1 argument, got 3

I've set up the following for loop to accept 5 test scores. I want the loop to prompt the user to enter 5 different scores. Now I could do this by writing the input "Please enter your next test ...
0
votes
2answers
138 views

passthru() + Pipe in subprocess = Traceback (most recent call last): (…) in stdout=subprocess.PIPE)

I've got an error when I'm using passthru() to call a python script (using subprocess and pipe) with PHP. Here is the error: Traceback (most recent call last): File "…/Desktop/h.py", line 11, in ...
1
vote
1answer
911 views

Multiprocessing on Windows breaks

I develop with Python on Linux and have never really seen this sort of problem with Windows. I'm using the multiprocessing library to speed up computations, which works very well for me on Linux. On ...
1
vote
1answer
193 views

Python 3 traceback fails when no exception is active

I noticed that in Python2 when I try to dump the exception stack trace, but there's no active exception, it prints None: Python 2.7.2+ (default, Oct 4 2011, 20:06:09) >>> import traceback ...
0
votes
1answer
167 views

Django error traceback not showing the real error

In a Django view method, I have some code like this: x = my_dict['foo'] 'foo' is not in my_dict, so I'm getting an error traceback screen, as I should. However, the error screen claims the error ...
1
vote
0answers
66 views

Using Python Tracing To Signal To Higher-Level Methods

I'm building a server where I'd like low level functions signal to higher level functions by calling them again. For instance: def bar(): print('hello') #run blah() again def foo(): ...
1
vote
1answer
271 views

Problems With py2app on a Mac

I've recently started to code python, and have written my first applications that I would like to give to some of my friends in the form of a single application, NOT a python script. After scouring ...
1
vote
1answer
119 views

getting the error traceback in a registered atexit function

I am trying to log the error that caused my process to shut down, but traceback.print_tb and traceback.print_exc don't seem to realize what the raised error is. In other words, why does the following ...

1 2