4
votes
2answers
41 views

Stuck on an error in Python 3 (exceptions, loop)

So what I'm trying to do here is that if you put in a string instead of an integer, you go back to the start But for some reason, the program just stops when you put in a string while True: try: ...
0
votes
1answer
28 views

functools.partial on class method

I'm trying to define some class methods using another more generic class method as follows: class RGB(object): def __init__(self, red, blue, green): super(RGB, self).__init__() ...
3
votes
1answer
59 views

Do I need a return statement after a Python exception?

I'm rather new to python, and I want to make sure I'm doing this correctly. I'd like to have an exception class: class UnknownCommandReceived(Exception): def __init__(self, value): ...
0
votes
1answer
25 views

Tracing an ignored exception in Python?

My app has a custom audio library that itself uses the BASS library. I create and destroy BASS stream objects throughout the program. When my program exits, randomly (I haven't figured out the ...
5
votes
3answers
66 views

Is it reasonable to declare an exception type for a single function?

Say I have this code: def wait_for_x(timeout_at=None): while condition_that_could_raise_exceptions if timeout_at is not None and time.time() > timeout_at: raise ...
0
votes
2answers
53 views

Unwanted quotes exception in String in Python

Lets say I want to print exactly this: text \" text2. The best output I can take is: text " text2. Is there any way to put the above text in a string exactly as it is?
2
votes
2answers
52 views

Stop a main thread from child thread

I am writing a python program, In main function I am starting a thread which runs continuously. After starting the the thread the main function enters a while loop where it takes user input ...
1
vote
0answers
57 views

How to organize a Python module with lots of constants and exceptions?

I'm writing a Python module that has only about twenty interesting types and global methods, but lots of constants and exceptions (about 70 constants for locales, 60 constants for encodings, 20 ...
0
votes
3answers
40 views

Passing an object with an Exception?

What is the correct way to pass an object with a custom exception? I'm pretty sure this code used to work, but now it is throwing an error. class FailedPostException(Exception): pass def ...
0
votes
0answers
41 views

Python: Best practice for raising and/or inspecting exceptions

I have a setup in my Python code resembling this: def a(): raise MyUserDefinedException() def b(): a() def c(): a() def d(): b() c() def main(): try: d() ...
2
votes
2answers
50 views

Using exception to control code flow

afaik using exceptions to handle code flow is wrong. I'm working in a code that has a method named getEntity(id) and getEntity throws a DoesNotExist exception when entity is not found. There is no ...
-2
votes
2answers
42 views

How to handle the EXCEPT message?

I am working with Python. In my program I am using "try:" and "except:". Inside the "except" I want to send an email telling that some error has occurred and the action could not be executed, but I ...
4
votes
2answers
52 views

Python exception chaining

Is there a standard way of using exception chains in Python? Like the Java exception 'caused by'? Here is some background. I have a module with one main exception class DSError: class ...
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!
0
votes
1answer
26 views

Python Dictionary KeyError and Multiple Dictionaries

I have 3 dictionaries a = {1:'this' ,2:'is' ,3:'an' ,4:'example'} b = {4:'this' ,5:'is' ,6:'example'} c = {7:'this' ,8:'is'} and this for i in range(10): print a[i] ,b[i] ,c[i] it causes a ...
-1
votes
1answer
42 views

unable to implement a try exception for this simple program in python to add two numbers [closed]

def equal(): print "Which of the parameters ‘a’ and ‘b’ is equal to 10 ?" while True: try: a = int(raw_input(" Pick a value for a:")) b = int(raw_input(" Pick a value for b:")) ...
0
votes
2answers
32 views

Python sketch not working as intended (reading data from CSV)

I am currently trying to write a program which runs through a CSV file of academic papers. The CSV is tab deliminated and is in four columns (Author, Date, Title, Journal) The idea is to ask the user ...
1
vote
1answer
32 views

How to handle Python 3.x UnicodeDecodeError in Email package?

I try to read an email from a file, like this: import email with open("xxx.eml") as f: msg = email.message_from_file(f) and I get this error: Traceback (most recent call last): File ...
-1
votes
2answers
42 views

Printing an exception

I'm writing a little script which catches an error (or exception). But when the exception occurs I want to have all information like the Traceback, exception name and exception message. It should also ...
1
vote
1answer
41 views

How to make a custom exception class with multiple init args pickleable

Why does my custom Exception class below not serialize/unserialize correctly using the pickle module? import pickle class MyException(Exception): def __init__(self, arg1, arg2): ...
1
vote
3answers
71 views

Exception caught even value is true?

I am currently attempting to write a code that iterates through a sequence (x), searching for a word that the user inputs. Below is the code. x = [1, 2, 3, 4, 5, 6, 7, 8, 9, 0] i = -1 while True: ...
1
vote
3answers
72 views

Let an exception raise itself

Is it possible to let an exception raise itself, in its own class instance ? Something like this: class Error(Exception): def __init__(self): if some stuff: pass elif ...
1
vote
1answer
122 views

Python: TypeError: 'file' object has no attribute '__getitem__'

I have a .gpx file which is cut off int the middle of the file. When I try to parse it using the gpxpy library I run into the following error. Parsing points in track.gpx ERROR:root:expected '>', ...
0
votes
1answer
34 views

How to reference an exception class in Python?

I want to catch a GPSException thrown by the gpxpy library. try: gpx = gpxpy.parse(open(filepath)) except GPXException: print "GPXException for %s." % filepath Since I am new to Python I do ...
0
votes
2answers
68 views

Try/except - how to continue

So there is a part in my program where I ask the user to enter a number. I use try/exept as: limits=True while limits: try: limits=int(input("Put your limit:")) ...
14
votes
4answers
377 views

Is it a good practice to use try-except-else in python?

From time to time on python, I see the block try: try_this(whatever) except SomeException, exception: #Handle exception else: return something What is the reason for the try-except-else to ...
1
vote
1answer
35 views

Is KeyError the appropriate Exception?

I'm creating an open source project on Github and I want to make sure I do everything I can to make it robust, stable and that its Pythonic. To this end, I have a question about what kind of ...
1
vote
1answer
72 views

Handling all but one exception

How to handle all but one exception ? try: something except NoChildException: raise NoChildException except: pass
0
votes
4answers
90 views

Python try except continue fails to print expected results

Can someone point out where am I going wrong, What is actually happening here exactly with except continue or a better way to tackle this problem. dic = {'arun': 123213, 'hari': 31212, 'akila': 321, ...
0
votes
0answers
30 views

Python/Myro: Error in atexit._run_exitfuncs

My beginners-level Python course uses Python 2.4 and Myro, the latter of which has caused me nothing but trouble. At this point in the class I can't even run the code I've written nine times out of ...
1
vote
2answers
32 views

My script returns an error when the test isn't corresponding to the Regex: 'NoneType' object has no attribute 'group'

My script down here is supposed to return a result in this format [ {'heure':xxxx,'mid': xxxx,'type message': "e.g SMS.Message ", "Origine":xxx,"Destination":xxxx}] Well it works but without ...
0
votes
1answer
35 views

How to force an exception in django in order to test it in django

I've really searched for how to patch Whatever.objects.get_or_create, but I can't get any suggestion or idea how to do it. Well, my problem is that I have something like this: def ...
0
votes
2answers
57 views

Completely disable Http 404/500 templates when Debug=False

I'm writing some methods in Django that return json. I'm handling exceptions myself and in certain scenarios, I want to return an Http 500 response with a Json body so the client can extract (amongst ...
2
votes
1answer
40 views

Get the full exception type/message and stack trace

I've written an API which returns Json in the following format... {"Success": true, Result: {...}} {"Success": false, ExceptionId: "(some uuid)"} The exceptions are logged. This is fine in ...
1
vote
1answer
76 views

How to rethrow an exception to a generator

It seems that calling throw on a generator takes a type of an exception. How should I rethrow an instance of an exception (that I've already caught)? EDIT: Consider def g(): try: yield 1 ...
1
vote
2answers
83 views

What does except really do in Python?

I'm really new in Python and a have no experience with exceptions but I've read all the documentation and couldn't find an answer ... so I'm looking for a deeper view in except's semantics. When we ...
1
vote
2answers
57 views

How to document an exception using Sphinx

I can't seem to figure out how to document exceptions using Sphinx. I've tried the following: def some_funct(): """ :raises: ExceptionType: Some multi-line exception description. ...
0
votes
1answer
36 views

Catching exceptions raised in the greenlets

I'm trying to catch the exceptions raised within the greenlets. According to this tutorial, unfortunately 'exceptions raised in the Greenlet, stay inside the Greenlet'. In the code below, I have a ...
1
vote
2answers
76 views

How do you raise a python exception and include additional data with it?

Sentry can detect additional data associated with an exception such as: How do you raise such an exception from Python (it's a Django app) with your own additional data fields?.
3
votes
1answer
95 views

How do I catch a warning in python like it's an exception? Not just for testing

I have to make a LaGrange Polynomial in python for a project I'm doing. I'm doing a Barycentric style one to avoid using an explicit for-loop as opposed to a newton's divided difference style one. The ...
2
votes
2answers
86 views

python calling custom exceptions from if-statement and try-except

So, I've created a custom exception that I want to call in 2 different ways (a if/else statement, and a try/except statement). Here is the custom exception: class CustomException(Exception): ...
1
vote
2answers
33 views

Disable Django exception formatting

I'm calling Django from within another application. While debugging, if a Django exception occurs, the (html) response body is being picked up and then wrapped in an exception generated in the ...
0
votes
2answers
90 views

Getting exception details in Python

I have to open & write to about 10 different files all within the same loop. e.g: for i in range(0,10): try: a=5 file1 = open("file1.txt",'w+') file2 = ...
1
vote
3answers
69 views

Python unhashable type: 'OrderedDict'

I am not at all unfamiliar with the concept of: TypeError: unhashable type: 'OrderedDict' But I can not understand how the following line of codes can produce such a stack-trace. 89: ...
-1
votes
2answers
182 views

Comparing Exception Objects in Python

I am new at Python and I'm stuck at this problem. I am trying to compare two "exception objects", example: try: 0/0 except Exception as e: print e >> integer division or modulo by zero ...
9
votes
2answers
211 views

Handling unhandled exception in GUI

I am mostly writing a small tools for tech savvy people, e.g. programmers, engineers etc. As those tools are usually quick hacks improved over time I know that there are going to be unhandled ...
1
vote
0answers
98 views

Python Exception: index out of range while debuging the code c++ with support for stl with gdb

I have a code: #include <list> int f(std::list<int>& l) { l.clear(); int i = 0; return i; } int main(int argc, char* argv[]) { std::list<int> l; int i = ...
1
vote
1answer
56 views

Error while running a code with Exception in python 2.7 [closed]

I am trying to run a code to learn exceptions in python. My question: Why does the following code result in an exception: ratios.append(float('nan'))#nan = not a number ValueError: invalid literal ...
2
votes
2answers
59 views

Better syntax for re-raising an exception only if an exception occurred?

I find myself doing this when I want to catch an exception, always run some specific code, then re-raise the original exception: try: error = False # do something that *might* raise an ...
3
votes
1answer
85 views

How to get the last exception object after an error is raised at a Python prompt?

When debugging Python code at the interactive prompt (REPL), often I'll write some code which raises an exception, but I haven't wrapped it in a try/except, so once the error is raised, I've forever ...

1 2 3 4 5 14