The tag has no wiki summary.

learn more… | top users | synonyms

-4
votes
0answers
55 views

An unexpected exception has happened [closed]

Unexpected exception is happened here i think so /usr/local/lib/python2.7/dist-packages/haizea/core/scheduler/slottable.py", line 476, in create_resource_tuple_from_capacity pos = ...
0
votes
3answers
39 views

Python, can't find function

At the moment I am taking an online course for python, only about 1/3 the way through and I decided to try and make something with what I've learnt so far. Running into an error now though. I am ...
0
votes
0answers
14 views

Logging traceback for imported module that imports a module

Apologies if the title is most unpythonic. I'm sure there's a proper term (I'd imagine something like 'Traceback passing' etc). I've tried searched here in stackoverflow.com for the solution I'm ...
2
votes
1answer
27 views

How can I more easily suppress previous exceptions when I raise my own exception in response?

Consider try: import someProprietaryModule except ImportError: raise ImportError('It appears that <someProprietaryModule> is not installed...') When run, if someProprietaryModule is not ...
0
votes
0answers
28 views

play 2.1.1: Unable to rollback transaction with ebean orm

I have problem with understanding how to work with ebean transactions under play 2.1.1. Ebean.execute(txScope, new TxRunnable() { public void run() { ...
1
vote
1answer
40 views

No traceback for manage.py runserver

Weird problem. I have a Django site that I run in two ways: Through apache/wsgi on :80 normally With python manage.py runserver on :8000 when testing Through wsgi everything works fine, but using ...
1
vote
2answers
50 views

R language: how to clear the frames/stack in Rstudio/console

By stack, I refer to the output from traceback() upon error condition. How does one 'clear the stack' so one gets 'No traceback available' from traceback()? thanks
0
votes
2answers
47 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
72 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
36 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
4answers
406 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
41 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
79 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
57 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
119 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
146 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 ...
2
votes
0answers
69 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
106 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
115 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
70 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
55 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
61 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
361 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
511 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
124 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
109 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
210 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, ...
4
votes
3answers
800 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
191 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
58 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
83 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
143 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
367 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
451 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
543 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
194 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
436 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
292 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
101 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
439 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
114 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
175 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
408 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
116 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
92 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
96 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
219 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
286 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
80 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
910 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 ...

1 2