Re: Python "member of" function

2006-04-29 Thread brianlum
Thanks, I was using "in" incorrectly. Thanks a lot! -- http://mail.python.org/mailman/listinfo/python-list

Python "member of" function

2006-04-29 Thread brianlum
Hi, I was wondering if anyone knew of a built in Python function that will check if an item is a member of a list, i.e., if item i is a member of list l. I read of a function "in" but I can't seem to get that to work and finding pages for "python in" does not reveal very many relevant sources. T

Type-Def-ing Python

2006-04-26 Thread brianlum
Dear Python Community, I have been trying to research how to type-def python. I want to type-def python so that I can use it as a static analyzer to check for bugs. I have been going over research on this field and I came upon Brett Cannon's thesis in which he tweaks the compiler and shows that

Future Warning with Negative Int

2006-04-14 Thread brianlum
Hi, If I try to print a negative integer as a hexadecimal, I get the following error: FutureWarning: %u/%o/%x/%X of negative int will return a signed string in Python 2.4 and up For example: >>> print "%X" % -1 __main__:1: FutureWarning: %u/%o/%x/%X of negative int will return a signed string in

Obtaining the Python Control Flow Graph

2006-04-02 Thread brianlum
Hi, I have been looking for a good way to convert python code into a control flow graph. I know of Python functions that will convert an expression into an abstract syntax tree (i.e. ast = parser.expr('(x+5)*5') then t = ast.totuple() then t), but I am not sure how to obtain a CFG. I've gone thr