Search Results

1
vote

How would you design a very “Pythonic” UI framework?

Personally, I would try to implement JQuery like API in a GUI framework. class MyWindow(Window): contents = ( …
0
votes

How can i stop a While loop?

I would do it using a for loop as shown below : def determine_period(universe_array): tmp = universe_array for period in xrange(1, 13): tmp = apply_rules(tmp) …
13
votes

What is the best (idiomatic) way to check the type of a Python variable?

What happens if somebody passes a unicode string to your function? Or a class derived from dict? Or a class implementing a dict-like interface? Following code covers first two cases. If you are usi …
1
vote

Test if executable exists in Python?

Just remember to specify the file extension on windows. Otherwise, you have to write a much complicated is_exe for windows using PATHEXT environment variable. You may just …
1
vote

How much slower is a wxWidget written in Python versus C++?

IMHO, main bottleneck will be the data structures you are going to use for representing the network graph. I have coded a similar application for tracing dependencies between various component vers …
1
vote

How to instantiate a class in python

In python member function of a class need explicit self argument. Same as implicit this pointer in C++. For more details please check out …
2
votes

Python __slots__

Each python object has a __dict__ atttribute which is a dictionary containing all other attributes. e.g. when you type self.attr python is actually doing self.__dict …
1
vote

Python regular expressions with more than 100 groups?

Can you explain why you need more than 100 groups? Perhaps we can help you find an alternate solution. …