Tagged Questions
0
votes
1answer
55 views
Checking if function was called with right arguments
Which coding-style is better / correct and why?
Using assert statement in each function:
def fun_bottom(arg):
assert isinstance(arg, int)
#blah blah
def fun_middle(arg):
assert ...
0
votes
4answers
76 views
How to format a python assert statement that complies with PEP8?
How does one format a long assert statement that complies with PEP8? Please ignore the contrived nature of my example.
def afunc(some_param_name):
assert isinstance(some_param_name, ...
1
vote
1answer
77 views
Unit Testing: Assert that a file/path exists [closed]
I am attempting to create a regression test for my Installer. The regression test is a script written in Python. The test checks that the correct files have been installed in the correct place.
Is ...
0
votes
0answers
68 views
Openvas.omplib Python module AssertionError
i am trying to make a python module interacting with openvas on Kali Linux, and i used the openvas.omplib python module, the problem occurs when i try to create task:
...
0
votes
0answers
69 views
uWSGI optimize option
I was looking at adding some assert statements in my code and wanted to be able to pass an argument to uwsgi to be able to turn off evaluating those statements in production. I can't seem to figure ...
1
vote
2answers
83 views
Best practice for Python: assert command() == False [closed]
I wonder what is better/best:
>>> def command():
... return False
...
>>> assert command() == False
>>> assert command() is False
>>> assert not command()
...
0
votes
0answers
119 views
python Mock “assert_has_calls” and “assert_called_once_with” nuance
I have a MagicMock object called some_magic_mock created for a test using a a patch.
Say the patched object is some_patched_object.
In the code-under-test there's a call:
...
1
vote
2answers
82 views
Assert fails in Python
I have this code:
/server/frontend/wsn.py
Line 866:
netid = hextransform(int(nid), 16)
Line 156:
def hextransform(data, length):
data = hex(data)[2:]
...
1
vote
3answers
321 views
Python unittest - asserting dictionary with lists
While writing some tests for my class, I encountered interesting simple problem. I would like to assertDictEqual two dictionaries containing some list. But this lists may not be sorted in a same way ...
2
votes
1answer
106 views
Why is assert a statement in Python? [duplicate]
Possible Duplicate:
design of python: why is assert a statement and not a function?
In Python 3, print was made into a function. What are the benefits of having assert be a statement?
14
votes
3answers
219 views
design of python: why is assert a statement and not a function?
In Python, assert is a statement, and not a function. Was this a deliberate decision? Are there any advantages to having assert be a statement (and reserved word) instead of a function?
According to ...
1
vote
1answer
101 views
unavailiable assertion methods in python 3.1 unittest
I'm new to python programming and especially to unit-testing framework.
For some reason working with pyDev (py 3.1 interpreter) I cannot use all of those new
assert methods (such as ...
0
votes
1answer
123 views
Need py.test to log assert errors in log file from python logging module
Need py.test to log assert errors in log file from python logging module.
The test has python logging module set up and all logs goes there as expected.
I used assert statements through out the ...
0
votes
3answers
173 views
Insertion sort invariant assertion fails
In the following code at the end of the for loop I use the assert function in order to test that a[i+1] is greater than or equal to a[i] but I get the following error (after the code below). Also in ...
5
votes
2answers
164 views
Can I force debugging python on AssertionError?
Suppose I have a python program where assert has been used to define how things should be, and I would like to capture anomalies with the read-eval-loop rather than having AssertionError be thrown.
...
0
votes
3answers
164 views
Python input validity and using asserts
I'm trying to perform good input validity checking on my python code, but I also want it to be succinct. That is, the solution I don't want to go with is this one:
def some_func(int_arg, str_arg, ...
2
votes
3answers
93 views
How do I specify the literal generator type in Python?
I need to check if a certain variable is a generator object.
How would I specify the literal generator type in place of the ??? below?
def go():
for i in range(999):
yield i
la = go()
print ...
2
votes
1answer
484 views
How to handle AssertionError in Python and find out which line or statement it occurred on?
I want to handle AssertionErrors both to hide unnecessary parts of the stack trace from the user and to print a message as to why the error occurred and what the user should do about it.
Is there any ...
1
vote
1answer
137 views
Testing for side-effects in python
I want to check that my function has no side-effects, or only side-effects affecting precise variables. Is there a function to check that it actually has no side-effects (or side-effects on only ...
1
vote
2answers
76 views
How to prevent a part of arbitrary code to be compiled in Python?
According to python documentation assert statements aren't included in code if it is compiled with -O key. I wondering if it is possible to emulate this behavior with any arbitrary piece of code?
For ...
0
votes
1answer
150 views
Python assert statement trigger SystemError: \loewis\release\python\Objects\longobject.c:270: bad argument to internal function
I have an assert statement in Python that triggers the following exception:
SystemError: \loewis\release\python\Objects\longobject.c:270: bad argument to internal function
I searched the Python ...
2
votes
2answers
417 views
Python assert statement and code reusability
The best practice seems to be to use assert for a condition that should never happen if the code is correct, and an exception for a condition that is a bit unusual but can happen (e.g., when memory ...
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 ...
6
votes
3answers
189 views
Can you have too many asserts (in Python)?
Lately, I've been adding asserts to nearly every single function I make to validate every input as sort of a poor-man's replacement for type checking or to prevent myself from accidentally inputting ...
-3
votes
1answer
716 views
assert function in python
For a given code:
pattern = r'(?:some_pattern)'
def find(seq):
ret = []
while True :
m= pattern_re.match(seq)
if not m :
break
myseq= m.group(2)
...
6
votes
2answers
219 views
Python Unittest Modularity vs Readability
I have a Python unittest, with some tests having the same type object tested. The basic outline in one test-class is:
class TestClass(unittest.TestCase):
def setup(self):
...
def ...
13
votes
3answers
735 views
Why assert is not largely used?
I've found python assert statement is a good way to catch situations that should never happen. And can be removed by python optimization when the code is trusted.
It seems to be a perfect mechanism ...
2
votes
1answer
123 views
How to test if exception in ok in unittest
I have a question about unittest.
How to make a test to see if is there an exception?
an example:
Datum(3,32,2012)
If i call class Datum like this, where month is not in range (>31), it's ...
5
votes
1answer
340 views
Disabling python's assert()
I'm running a python script from inside a different software (it provides a python interface to manipulate its data structures).
I'm optimizing my code for speed and would like to see what impact on ...
2
votes
4answers
1k views
python assert for lists of floats
using assert to compare lists of floats seems to work straight out of the box as it were - does anyone know what goes on behind the scenes, e.g. what is the value of EPSILON?
As a C programmer this ...
0
votes
3answers
224 views
How to use Assert in this instance?
I'm trying to use assert to check if another function is working correctly.
In this case the function I am trying to test is the following:
def factorial(n):
if type(n) != int or n < 0:
...
4
votes
2answers
315 views
Is it possible to set the python -O (optimize) flag within a script?
I'd like to set the optimize flag (python -O myscript.py) at runtime within a python script based on a command line argument to the script like myscript.py --optimize or myscript --no-debug. I'd like ...
10
votes
2answers
2k views
Unittest's assertEqual and iterables - only check the contents
Is there a 'decent' way in unittest to check the equality of the contents of two iterable objects?
I am using a lot of tuples, lists and numpy arrays and I usually only want to test for the contents ...
2
votes
2answers
96 views
Pythonic handling of this error case
In the code below, is my use of assert justified? If anything is wrong, an error will occur anyway when I try to access the attributes. On the other hand, the assert provides a descriptive error ...
0
votes
2answers
147 views
Handle assertion dialog box with python subprocess
I am using python to create a sub process to check and see that no assertions occur.
I want to catch the error output along with the return code. That works fine, but the problem I run into is that ...
0
votes
1answer
174 views
Mechanze form submission causes 'Assertion Error' in response when .read() is attempted
I am writing a web-crawl program with python and am unable to login using mechanize. The form on the site looks like:
<form method="post" action="PATLogon">
<h2 ...
1
vote
4answers
371 views
Using assert within methods - Python
is it bad practice to use asserts within methods?
e.g.
def add(x, y):
assert isinstance(x, int) and isinstance(y, int)
return x + y
Any ideas?
1
vote
1answer
517 views
Handling assertion in python
I can't understand why this code:
x='aaaa'
try:
self.assertTrue(x==y)
except:
print (x)
generates me this error
AssertionError: False is not True
It should be handle it by
print(x)
...
19
votes
4answers
6k views
What is the use of “assert” in Python?
i have been reading some sourcecodes and in several places I have seen the usage of assert. What does it mean exactly? what is it's usage?
1
vote
2answers
813 views
assertionerror returning empty string in python
I am doing this:
try: self.failUnless(sel.is_text_present("F!")) #sel.is_text_present("F!") is false
except AssertionError, e:
print("x"+e+"y")
sys.exit()
it is printing nothing except xy. ...
14
votes
5answers
6k views
Python: How do I check (in runtime) if a given class is a subclass of another given class?
Let's say that I have a class Suit and four subclasses of suit: Heart, Spade, Diamond, Club.
class Suit:
...
class Heart(Suit):
...
class Spade(Suit):
...
class Diamond(Suit):
...
class ...
3
votes
2answers
382 views
How to remove python assertion when compiling in cython?
so, here is my problem:
I code in python, but I need to improve performance in some part of my code that are too slow. A good(and easy) solution seems to be using cython; I tried it and got good ...
5
votes
4answers
3k views
Example use of assert in Python?
I've read about when to use assert vs. exceptions, but I'm still not "getting it". It seems like whenever I think I'm in a situation where I should use assert, later on in development I find that I'm ...
1
vote
5answers
502 views
How to use less than and equal to in an assert statement in python
When I run the following:
growthRates = [3, 4, 5, 0, 3]
for each in growthRates:
print each
assert growthRates >= 0, 'Growth Rate is not between 0 and 100'
assert growthRates <= ...
1
vote
1answer
125 views
Python - Why the use of assert(required_param)?
I found this today while looking at a library for an API .
def my_function(self, required_param=None):
assert(required_param)
... Do cool function stuff
Wouldn't it be easier to do this:
...
8
votes
2answers
2k views
python assert with and without parenthesis
Here are four simple invocations of assert:
>>> assert 1==2
Traceback (most recent call last):
File "<stdin>", line 1, in ?
AssertionError
>>> assert 1==2, "hi"
Traceback ...
4
votes
3answers
1k views
Test assertions for tuples with floats
I have a function that returns a tuple that, among others, contains a float value. Usually I use assertAlmostEquals to compare those, but this does not work with tuples. Also, the tuple contains other ...
5
votes
3answers
2k views
What are the advantages or difference in “assert False” and “self.assertFalse”
I am wrting test's and I have heard some people saying to use self.assertFalse rather than assert False. Why is this and are there any advantages to be had?
Thanks
7
votes
4answers
2k views
Python Error-Checking Standard Practice
I have a question regarding error checking in Python. Let's say I have a function that takes a file path as an input:
def myFunction(filepath):
infile = open(filepath)
#etc etc...
One ...
8
votes
3answers
5k views
Proper way to assert type of variable in Python
In using a function, I wish to ensure that the type of the variables are as expected. How to do it right?
Here is an example fake function trying to do just this before going on with its role:
def ...
